list the no of files created when c source file is compiled
Answers were Sorted based on User's Feedback
Answer / abhijeet kankani
Basically 4 files:
a).c (source code file)
b).obj(object file in which .i and .asm are also included)
c).exe
d).bak (backup)
Is This Answer Correct ? | 48 Yes | 3 No |
Answer / 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 |
Answer / rakesh
.cpp/.c // code
.i //after pre-prossesor
.obj // object file
.bak
.exe
Is This Answer Correct ? | 11 Yes | 3 No |
Answer / niket raj gahoi
there are 6 file created they are
1) .c
2) .i
3) .obj
4) .bak
5) .asm
6 .exe
Is This Answer Correct ? | 6 Yes | 4 No |
What does double pointer mean in c?
Why header files are used?
Explain argument and its types.
What are the c keywords?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
Why isnt there a numbered, multi-level break statement to break out
Why isn't it being handled properly?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
How arrays can be passed to a user defined function
How a string is stored in c?
What is I ++ in c programming?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.