Distinguish between a # include and #define.
No Answer is Posted For this Question
Be the First to Post Answer
What is the keyword auto for?
What are the operators in c++?
Will c++ be replaced?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
How does list r; differs from list r();?
What are function poinetrs? where are they used?
Does c++ have finally?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
Is c++ a good beginners programming language?
What is the difference between #define debug 0 and #undef debug?
Explain one method to process an entire string as one unit?
Generally variables are stored in heap memory. When he variables are created in stack?