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

WHAT IS FLOAT?

3 Answers  


What is exit() function?

0 Answers  


how we can make 3d venturing graphics on outer interface

1 Answers   Microsoft,


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


What does it mean when a pointer is used in an if statement?

0 Answers  


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


How does variable declaration affect memory?

1 Answers  


Why void main is used in c?

0 Answers  


What are the ways to a null pointer can use in c programming language?

0 Answers  


What kind of structure is a house?

0 Answers  


Why main function is special give two reasons?

0 Answers  


N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3

3 Answers   Honeywell,


Categories