list the no of files created when c source file is compiled
Answer Posted / rakesh
.cpp/.c // code
.i //after pre-prossesor
.obj // object file
.bak
.exe
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
Differentiate between #include<...> and #include '...'
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is cohesion in c?
What is the difference between volatile and const volatile?
Is struct oop?
What is difference between function overloading and operator overloading?
How can I use a preprocessorif expression to ?
What is output redirection?
What is the difference between struct and union in C?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is main () in c language?
Write a program to print ASCII code for a given digit.
Can include files be nested? How many levels deep can include files be nested?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer