What is conditional Compilation?
Answers were Sorted based on User's Feedback
Answer / phani
using the Directives to control what does and does not get
compiled
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / sujatha
a compiler directive which includes or excludes lines of
codes based on a boolean expression and it is a debugging
tool for checking a errors and debug it.
| Is This Answer Correct ? | 2 Yes | 0 No |
how would it be like that....
the complete code has to be compiled in order to execute as
one cannot run or execute the code without compiling it...
then how would it be a condition to compile the code...
| Is This Answer Correct ? | 3 Yes | 3 No |
What are the data types in oop?
what is object oriented programming and procedure oriented programming?
What is the diamond problem in inheritance?
What is balance factor?
What is this pointer in oop?
Program to check whether a word starts with a capital letter or not.
What are the advantages of polymorphism?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
When will a constructor executed?
How do you make derived class as an abstract class?
What are objects in oop?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }