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 |
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
how can i get this by using for loop? * ** * **** * ******
what are the files which are automatically opened when a c file is executed?
What is a pragma?
How can you determine the maximum value that a numeric variable can hold?
What is static and auto variables in c?
Explain what is the difference between far and near ?
what is difference between procedural language and functional language ?
What is a scope resolution operator in c?
Explain the priority queues?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
program for comparing 2 strings without strcmp()