list the no of files created when c source file is compiled
Answer Posted / rahul maury
.obj
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the 4 data types?
Why is it usually a bad idea to use gets()? Suggest a workaround.
How to write a multi-statement macro?
Is c call by value?
#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); }
What are categories used for in c?
What is c standard library?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Can the “if” function be used in comparing strings?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
When is a “switch” statement preferable over an “if” statement?
What is scope and lifetime of a variable in c?
Explain function?
Does c have function or method?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?