list the no of files created when c source file is compiled
Answer Posted / suman halder
a).i /* expanded source code generated by preprocessor */
b).asm /* code generated by the compiler */
c).obj /* code generated by the assembler */
d).bak
e).exe /* executable code generated after linking */
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What are the c keywords?
What is operator precedence?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
How can I read in an object file and jump to locations in it?
Hi can anyone tell what is a start up code?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
How many keywords (reserve words) are in c?
What is sorting in c plus plus?
What are the advantages of using Unions?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are header files why are they important?
What are the different data types in C?
What is the difference between #include and #include 'file' ?
What is the benefit of using const for declaring constants?
Is struct oop?