list the no of files created when c source file is compiled

Answers were Sorted based on User's Feedback



list the no of files created when c source file is compiled..

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

list the no of files created when c source file is compiled..

Answer / peter devanesan

.obj,.bak

Is This Answer Correct ?    23 Yes 10 No

list the no of files created when c source file is compiled..

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

list the no of files created when c source file is compiled..

Answer / rakesh

.cpp/.c // code
.i //after pre-prossesor
.obj // object file
.bak
.exe

Is This Answer Correct ?    11 Yes 3 No

list the no of files created when c source file is compiled..

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

list the no of files created when c source file is compiled..

Answer / khaja

.obj,.exe

Is This Answer Correct ?    5 Yes 5 No

list the no of files created when c source file is compiled..

Answer / viji

application file and
.obj file

Is This Answer Correct ?    2 Yes 4 No

list the no of files created when c source file is compiled..

Answer / rahul maury

.obj

Is This Answer Correct ?    1 Yes 3 No

list the no of files created when c source file is compiled..

Answer / viral doshi

.obj
.i
.bak

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C Interview Questions

a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6

7 Answers   TCS,


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

0 Answers  


what is link list?

3 Answers  


Explain what are bus errors, memory faults, and core dumps?

0 Answers  


How can I change the size of the dynamically allocated array?

0 Answers  






what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }

1 Answers  


What does it mean when the linker says that _end is undefined?

0 Answers  


What is volatile variable in c?

0 Answers  


What are types of functions?

0 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


what is the value of b if a=5; b=++a + ++a

31 Answers   Infosys, TCS, Tech Mahindra,


what is c language.

3 Answers  


Categories