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 |
What is an lvalue and an rvalue?
How to write the code of the program to swap two numbers with in one statement?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
Explain goto?
What are reserved words with a programming language?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
write a c program that prints all multiples of 3between 1 and 50.
Explain what’s a signal? Explain what do I use signals for?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.