while initialization of array why we use a[][2]
why not a[2][]...?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How the c program is executed?

0 Answers  


What is 2c dna?

0 Answers  


What are the 5 types of inheritance in c ++?

0 Answers  


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

0 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


What is getch?

0 Answers  


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(); }

0 Answers   Microsoft,


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

0 Answers   TCS,


What are unions in c?

0 Answers  


What are the advantage of c language?

0 Answers  


Do you know pointer in c?

0 Answers  


Categories