how c source file in converted to exe file
Answers were Sorted based on User's Feedback
Answer / anil kumar
For this ans first we have to know the c-compiler architecture
in c we will save the file with .c extension
the compiler first preprocessor toolconverts the .c file into .i(intermediate code) again .i into .asm(assembler) , .asm into .obj(object code) this object code wil be linked with the object for the library functions and generates a .exe(excutable file)
| Is This Answer Correct ? | 19 Yes | 1 No |
Answer / anand shankar pathak
first .c file is converted to .i format it is done by the preprocessor and then the compiler convert this file to .asm file later assembler creats object that is linbked together using linker and loader and finally .exe file is genrated
and this process is done automatically while we execute the program we don't have to do anything,
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manish soni tagore collage jai
first
source file(file name or code program)--complile-->object
file(filename.bak)----excute----->.exe(fliename.exe)
| Is This Answer Correct ? | 1 Yes | 10 No |
Answer / ruth
c source file converted into exe file automatically when
you run the program
| Is This Answer Correct ? | 5 Yes | 19 No |
/* hello i am ricky dobriyal student of bca from simt
kashipur*/
c source file converted into exe file automatically when
you run the program
thank you..
| Is This Answer Correct ? | 8 Yes | 24 No |
What is linear search?
What is the difference between calloc() and realloc()?
What is self-referential structure in c programming?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What are the basic data types associated with c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
what is the maximum no. of bytes calloc can allocate
WHAT IS LOW LEVEL LANGUAGE?
what are bit fields? What is the use of bit fields in a structure declaration?
0 Answers Flextronics, TISL, Virtusa,
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Explain what does a function declared as pascal do differently?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A