how c source file in converted to exe file

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many types of arrays are there in c?

595


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3297


Define VARIABLE?

690


Is there anything like an ifdef for typedefs?

704


What are the main characteristics of c language describe the structure of ac program?

614






What is typeof in c?

609


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

631


What are operators in c?

583


What are loops c?

616


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1497


What is malloc calloc and realloc in c?

670


What are external variables in c?

546


Where is c used?

650


explain what is fifo?

634


Why n++ execute faster than n+1 ?

1851