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
Does c have class?
Explain the difference between call by value and call by reference in c language?
What is array in C
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is the purpose of sprintf?
What are the advantages of Macro over function?
How can I find out if there are characters available for reading?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What are the different types of control structures?
What is use of #include in c?
What is a struct c#?
What does c in a circle mean?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Explain why c is faster than c++?
When can a far pointer be used?