what is the full form of c language
Answer Posted / vijay kumar
full form of c is combit language.
| Is This Answer Correct ? | 14 Yes | 14 No |
Post New Answer View All Answers
Why do we use & in c?
What is ctrl c called?
What is derived datatype in c?
What does volatile do?
Difference between constant pointer and pointer to a constant.
What is double pointer?
What is the use of #include in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How many types of sorting are there in c?
Why is c called a structured programming language?
How can I find out the size of a file, prior to reading it in?
What is the usage of the pointer in c?
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 any one tel me wt is the question pattern for NIC exam
In c language can we compile a program without main() function?