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 |
Explain 'far' and 'near' pointers in c.
Why do we need a structure?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
what is meant by flushll() in c programming?
how to devloped c lenguege?
What is the meaning of && in c?
Who invented bcpl language?
What is the difference between fork() and vfork()?
What is a loop?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .