answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Does conditional compilation directives allow to specify a selective compilation of program's source code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the disadvantages of writing programs with 'in-line assembler' directives?

The simple answer is that the resulting program is not portable.


What is a conditional cash transfer?

Conditional cash transfer are programs that help poverty. They make conditions on welfare programs based on the action of the receiver. The welfare money will only go to someone who meets a certain criteria. This type of program is available in many countries around the world.


Which software runs a specific program?

It depends on which specific program you have in mind. Native machine code programs do not require any software to run; the program was converted into the machine's native language during compilation and does not require further translation. However, machine code is non-portable. To execute the same program on another platform the source code must be recompiled for that platform. Conditional compilation directives ensure that the correct machine-specific source code is compiled. Byte code programs, however, do require software to execute. Byte code is not native machine code so must be converted to native machine code while it is executing. This is achieved using a runtime program known as an interpreter. Java is a typical example. Java source code is compiled to Java byte code suitable for interpretation by the Java virtual machine (JVM). Thus a JVM is required to execute Java programs. Unlike native machine code, byte code is portable; the same byte code will execute upon any machine that has a suitable interpreter available.


Which software runs specific program.?

It depends on which specific program you have in mind. Native machine code programs do not require any software to run; the program was converted into the machine's native language during compilation and does not require further translation. However, machine code is non-portable. To execute the same program on another platform the source code must be recompiled for that platform. Conditional compilation directives ensure that the correct machine-specific source code is compiled. Byte code programs, however, do require software to execute. Byte code is not native machine code so must be converted to native machine code while it is executing. This is achieved using a runtime program known as an interpreter. Java is a typical example. Java source code is compiled to Java byte code suitable for interpretation by the Java virtual machine (JVM). Thus a JVM is required to execute Java programs. Unlike native machine code, byte code is portable; the same byte code will execute upon any machine that has a suitable interpreter available.


What are the programs that are executing during compilation in c?

The only program that executes during compilation is the compiler. The compiler produces one object file for each translation unit compiled. When all translation units are compiled, the object files can then be linked together by executing the linker.


Origin of the giant rabbit?

Giant rabbit breeds were developed through programs of selective breeding. They were bred for the meat and fur trade.


How should I study to be a designer?

There are many colleges that have fashion designing programs. It's hard to get into these programs though, and they are VERY selective. Most are three or four years long. More information about these schools is at http://www.fashion.net/howto/fashiondesigner/.


What is a cash transfer?

Conditional cash transfer are programs that help poverty. They make conditions on welfare programs based on the action of the receiver. The welfare money will only go to someone who meets a certain criteria. This type of program is available in many countries around the world.


What is cash transfers?

Conditional cash transfer are programs that help poverty. They make conditions on welfare programs based on the action of the receiver. The welfare money will only go to someone who meets a certain criteria. This type of program is available in many countries around the world.


What is the difference between a DoD manual and a DoD directive?

Directives establish or describe policy, programs, and organizations. They also define missions, provide authority, and assign responsibilities. Instructions include more detail on how to implement a directive.


Consequences for not joining the selective service act?

Failure to register for the Selective Service can result in being ineligible for federal financial aid, job training programs, federal employment, and citizenship for non-U.S. citizens. Additionally, individuals can face fines, imprisonment, or other penalties for not registering.


Why wont your C plus plus programs compile?

C++ programs won't compile if they contain compiler errors. The compiler will tell you precisely where the error is, and the type of error, unless the error is in a macro. The compiler cannot see macro definitions because they are inline expanded prior to compilation.