what are the stages of compilation
Answer / rajesh
There are three stages of compilation
1) Preprocesing
2) Compilation
3) linking
| Is This Answer Correct ? | 16 Yes | 3 No |
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
Please list all the unary and binary operators in C.
how to capitalise first letter of each word in a given string?
Where static variables are stored in memory in c?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
How is a macro different from a function?
How does free() know how many bytes to free?
What is memmove?
What is the meaning of 2d in c?
What is null pointer constant?
What is queue in c?