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 |
Find if a number is power of two or not?
what is differnence b/w macro & functions
Mention four important string handling functions in c languages .
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
hi , please send me NIC written test papers to sbabavalli@gmail.com
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How can I recover the file name given an open stream?
Explain the use of fflush() function?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
how to print this pyramid * * * * * * * * * * * * *
Write a C program to find the smallest of three integers, without using any of the comparision operators.
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer