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

swapping of two numbers without using third variable using AND and OR operators

2 Answers  


How important is structure in life?

0 Answers  


What is sparse file?

1 Answers  


write a program whose output will be- 1 12 123 1234

10 Answers  


Explain the difference between null pointer and void pointer.

0 Answers   TCS,


What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }

1 Answers  


What are the Advantages of using macro

0 Answers  


Write a C program to convert an integer into a binary string?

1 Answers  


how many argument we can pas in in a function

25 Answers   CTS,


How do I swap bytes?

0 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression

1 Answers   TCS,


Categories