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


Please Help Members By Posting Answers For Below Questions

what do you mean by inline function in C?

618


Explain how do you determine a file’s attributes?

594


How would you rename a function in C?

622


What is meant by high-order and low-order bytes?

656


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

754






Is register a keyword in c?

638


What is difference between structure and union in c programming?

569


What does void main () mean?

734


Is a pointer a kind of array?

602


Compare and contrast compilers from interpreters.

684


Why do we use pointer to pointer in c?

599


Write programs for String Reversal & Palindrome check

596


How can a string be converted to a number?

518


What is the difference between local variable and global variable in c?

691


how to write optimum code to divide a 50 digit number with a 25 digit number??

2755