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
What is identifiers in c with examples?
Should I learn data structures in c or python?
How do you declare a variable that will hold string values?
What is the use of sizeof () 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?
Explain low-order bytes.
What is #line?
What is the difference between far and near in c?
What is difference between class and structure?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a program to create a sparse matrix using dynamic memory allocation.
When should I declare a function?
How can you find the day of the week given the date?
What is the purpose of sprintf?
Do pointers store the address of value or the actual value of a variable?