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 |
How many data structures are there in c?
what are the advantages of a macro over a function?
What does void main () mean?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
program for swapping two strings by using pointers in c language
What is difference between far and near pointers?
will u give me old quesrion papers for aptitude for L & t info tech?
simple c program for 12345 convert 54321 with out using string
What is c mainly used for?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is typeof in c?
Reverse a string word by word??