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
Explain how can I convert a number to a string?
Do pointers need to be initialized?
Explain the difference between strcpy() and memcpy() function?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain the difference between malloc() and calloc() in c?
What is an array in c?
What is the value of uninitialized variable in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How pointer is different from array?
What are types of preprocessor in c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Explain high-order bytes.
Is there any data type in c with variable size?
What does c mean?