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

What is ctrl c called?

0 Answers  


What is the difference between a function and a method in c?

0 Answers  


what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????

2 Answers   Apple,


Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .

3 Answers   TCS,


What is the purpose of main() function?

0 Answers  






can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


What is the use of bit field?

0 Answers  


a=5 a=a++/++a

14 Answers   Bhel,


Can 'this' pointer by used in the constructor?

0 Answers  


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel

0 Answers  


which of the function operator cannot be over loaded a) <= b)?: c)== d)*

10 Answers   Cisco, CTS, Google, HCL, HP,


Categories