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

Write a code on reverse string and its complexity.

0 Answers   Expedia,


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

0 Answers  


What is 'bus error'?

0 Answers  


Explain what is the concatenation operator?

0 Answers  


what is the difference between #include<stdio.h> and #include"stdio.h" ?

6 Answers   TCS,






Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)

2 Answers   HCL, IBM, Satyam, Vimal, Vimukti Technologies,


what is difference between C and C++

4 Answers  


Can main () be called recursively?

0 Answers  


can we have joblib in a proc ?

0 Answers  


plz answer..... a program that reads non-negative integer and computes and prints its factorial

2 Answers  


what is the size of an integer variable?

4 Answers  


Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program

3 Answers   Subex,


Categories