how many header file is in C language ?
Answer Posted / mohan
there are 24 header files in c language
| Is This Answer Correct ? | 8 Yes | 5 No |
Post New Answer View All Answers
Why does not c have an exponentiation operator?
How does sizeof know array size?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
can we change the default calling convention in c if yes than how.........?
differentiate built-in functions and user – defined functions.
When is a “switch” statement preferable over an “if” statement?
What is printf () in c?
What are pointers in C? Give an example where to illustrate their significance.
Do string constants represent numerical values?
What is identifiers in c with examples?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is c definition?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What’s the special use of UNIONS?
What is queue in c?