Answer Posted / anil kumar
For this ans first we have to know the c-compiler architecture
in c we will save the file with .c extension
the compiler first preprocessor toolconverts the .c file into .i(intermediate code) again .i into .asm(assembler) , .asm into .obj(object code) this object code wil be linked with the object for the library functions and generates a .exe(excutable file)
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
What is the benefit of using an enum rather than a #define constant?
What is a structure and why it is used?
What are structures and unions? State differencves between them.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Explain why C language is procedural?
Is there any possibility to create customized header file with c programming language?
What is switch in c?
What are different types of variables in c?
Define Spanning-Tree Protocol (STP)
What is malloc() function?
Where we use clrscr in c?
What is a structure member in c?
Explain what is the concatenation operator?
Is sizeof a keyword in c?