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 |
Is using exit() the same as using return?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is a const pointer, and how does it differ from a pointer to a const?
What are called c variables?
how can i get output like this? 1 2 3 4 5 6
How can we open a file in Binary mode and Text mode?what is the difference?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
What is an expression?
Define VARIABLE?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Write a program to generate prime factors of a given integer?
Lists the benefits of c programming language?