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 continue keyword in c
Who is the main contributor in designing the c language after dennis ritchie?
How can I read a binary data file properly?
What is the total generic pointer type?
Write programs for String Reversal & Palindrome check
Tell us something about keyword 'auto'.
what is the structure pointer?
What is d'n in c?
What are the types of functions in c?
Why does everyone say not to use gets?
Function calling procedures? and their differences? Why should one go for Call by Reference?
Which is better malloc or calloc?
Are there namespaces in c?
can any one provide me the notes of data structure for ignou cs-62 paper
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.