When the macros gets expanded?
Answer / Ravi Prakash Mourya
Macros in C are expanded at compile time before any actual code is generated.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
how to multiply two number taking input as a string (considering sum and carry )
Why main is not a keyword in c?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
where can function pointers be used?
What is the mean of this statement:: if(int i=0 * i=9)
What are the different categories of functions in c?
is it possible to create your own header files?
Write a program to print ASCII code for a given digit.
HOW DO YOU HANDLE EXCEPTIONS IN C?
Explain how can I remove the trailing spaces from a string?