tell me the full form of c?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
C is the successor of the language of B... so their is no
any full forms for C... it's just an alphabet
| Is This Answer Correct ? | 26 Yes | 4 No |
Answer / v amsi
although some says that C's abbreviation is compiler (as if
it is compiler based language) i will agree vth first answer
| Is This Answer Correct ? | 10 Yes | 5 No |
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
What is the size of structure in c?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
What is 2 d array in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is && in c programming?
How can I access a memory located at certain address?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
what does ‘Bus Error’ mean?
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(); }
2. 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
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is