is compiler do read the data line by line or not.
??
Answer Posted / abhi
Interpreter reads line by line not compiler
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
what do you mean by inline function in C?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the use of function in c?
What is a void pointer? When is a void pointer used?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What are the advantages of external class?
What are the advantages of c preprocessor?
Why do we use return in c?
Is it possible to initialize a variable at the time it was declared?
What are near, far and huge pointers?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is a double c?
formula to convert 2500mmh2o into m3/hr
The statement, int(*x[]) () what does in indicate?