Define macro.
No Answer is Posted For this Question
Be the First to Post Answer
What is class syntax c++?
What are guid?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What is anonymous object in c++?
How a pointer differs from a reference?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
if there is binary tree which one is the easiest way to delete all child node?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
Why #include is used?