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 |
swapping of two numbers without using third variable using AND and OR operators
How important is structure in life?
What is sparse file?
write a program whose output will be- 1 12 123 1234
Explain the difference between null pointer and void pointer.
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What are the Advantages of using macro
Write a C program to convert an integer into a binary string?
how many argument we can pas in in a function
How do I swap bytes?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression