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

Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

0 Answers   GrapeCity,


Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80

0 Answers  


what is the difference between structural,object based,object orientd programming languages?

1 Answers   PanTerra,


What is storage class?

0 Answers  


why we are using semicolon at the end of printh statment

2 Answers   HCL,






Explain the difference between the local variable and global variable in c?

0 Answers  


What is sparse file?

1 Answers  


What are keywords c?

0 Answers  


1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision

9 Answers   HCL, Qualcomm,


how to do in place reversal of a linked list(singly or doubly)?

3 Answers  


Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.

0 Answers  


sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.

1 Answers  


Categories