discuss the steps needed to get a program from source code to
executable in a system?



discuss the steps needed to get a program from source code to executable in a system? ..

Answer / vadivelt

1.Source and header files
- Preprocessing
- Compilation
Outcome of compilation process would be object file.

2.Object files
- Linking
Outcome of linking process would be executable image

3.Executable - Final image

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More C Interview Questions

how to swap four numbers without using fifth variable?

2 Answers  


What is graph in c?

0 Answers  


Explain bit masking in c?

0 Answers  


#define d 10+10 main() { printf("%d",d*d); }

6 Answers  


Are enumerations really portable?

0 Answers  






How can you convert integers to binary or hexadecimal?

0 Answers  


What does p mean in physics?

0 Answers  


Explain what are run-time errors?

0 Answers  


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

0 Answers  


What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }

8 Answers   ADITI, Adobe,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 Answers   CISOC, CitiGroup, College School Exams Tests,


What is Heap?

3 Answers  


Categories