Can we declare function inside main?
No Answer is Posted For this Question
Be the First to Post Answer
What is default value of global variable in c?
where do we use volatile keyword?
c program to manipulate x=1+3+5+...+n using recursion
what is the difference between definition and declaration? give me some examples.
what does exit() do?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What are preprocessor directives?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
Explain in detail how strset (string handling function works )pls explain it with an example.
what is the different between data structure and data type?
Why do we use namespace feature?