how many keywords do C compile?
Answer Posted / gandhi priyank
there are 32 keywords in c language ...............
| Is This Answer Correct ? | 72 Yes | 9 No |
Post New Answer View All Answers
What are the advantages and disadvantages of pointers?
When would you use a pointer to a function?
What is call by value in c?
Explain what is the difference between null and nul?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
The file stdio.h, what does it contain?
Does c have circular shift operators?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
What is a function simple definition?
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(); }
What is the difference between void main and main in c?
What is the difference between typedef and #define?
Describe static function with its usage?
What is abstract data structure in c?
What is wrong with this statement? Myname = 'robin';