Answer Posted / dev
array is a reference variable which stores similar type of data
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is define c?
What is union and structure?
Can you pass an entire structure to functions?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is the difference between text files and binary files?
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(); }
Tell me the use of bit field in c language?
Define recursion in c.
What does 3 mean in texting?
What is #include stdio h and #include conio h?
What is the use of gets and puts?
Is main is a keyword in c?
What is c programing language?
What is difference between union and structure in c?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile