answersLogoWhite

0

What else can I help you with?

Related Questions

What does a compiler do when you compile your program?

Coverts source code into object code


How do you compile source code from the command prompt in java?

compile:javac filename.javarun:java filename


What is compile time and run time?

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.


Are there instances where source code packages are better for your computer?

Yes if there is no executable package available for your platform and you have the means to adapt and compile the source code so that it can be used on your platform.


When you compile source code the resulting collection of instructions is called code which is placed in a new file?

Is called machine code


How do you compile Ubuntu?

Ubuntu comes precompiled. Although you could compile it from source, that would take days, and would be pretty silly. To compile programs on Ubuntu, first "sudo apt-get install build-essential", then run "./configure" and "make" in the directory where you have the source code.


What is compile time?

Compile Time: In longer form, you might say, "at the time of compiling", or, "when the program is compiled". When you compile a program, the compiler applies various processes to your source code in order to generate the executable files. These are actions that happen "at compile time". Other actions happen when you actually run the finished program. These actions are said to occur, at, or in, "run time".


Is Ruby an interpreted language or a compiled language?

It is an interpreted language, however there are some versions that compile the source code to byte code which can then be interpreted with much greater efficiency than the original source code.


What do you compile?

Compiling is the act of translating human-readable source code to machine-readable byte code.In Java, the compiler program is javac


Where does global static local register variables free memory and C Program instructions get stored?

* These are all implementation defined. Access to `register' specified indentifiers should be as fast as possible, so the compiler may place the value in a machine register. However, the compiler is free to treat a `register' declaration as an `auto' declaration. * Where free memory is maintained is an OS specific concept. Instructions are generally stored in code segement. Local Variables are stored in Stack. Register variables are stored in Register. Global & static variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment.


Differencitate between source code and bytcode in java?

The source code is just the set of statements written in (any included) java language by a programer (in this case our source code is a text file with .java extension). And in other hand a bytecode is the resulting code of compile a .java file, It is not machine code, but it can be interpreted and executed by the jvm.


What is the storage allocation and scope of global extern static local and register variables?

AnswerLocal Variables are stored in Stack. Register variables are stored in Register. Global variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment and the extern variables also stored in data segment. Nooo NoooStatic variable will be stored in .BSS segment... (Block Started By Symbol)