discuss the steps needed to get a program from source code to
executable in a system?
Answer Posted / 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 View All Answers
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What are file streams?
Can a pointer be null?
In C language what is a 'dangling pointer'?
Explain what are compound statements?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a program fibonacci series and palindrome program in c
What is the difference between array and structure in c?
What is malloc() function?
What is auto keyword in c?
Define the scope of static variables.
What is array within structure?
Difference between Function to pointer and pointer to function
What is c variable?
Which is better malloc or calloc?