Elearning , Interview Questions And Answers

Google

12 13.main(int arg c) int I,j=0; { for(I=0;I<argc:I++0) j=j+....(argv(I)) printf("%d",j); } ans 123 error 6 14.main() { printf("%d",printf("helloworld")); } ans 13 hello world hello world 13 error 15. main() { int a[2][2][6] {{2,3,4,5,6,7} {................}} printf("%u%u%u%u",a,*a,**a,***a); assume base address is 567895 ans 567895, 567895, 567895,2 16. main() { a[2][2]={{2},{3}} printf("%d",a[0][0]); printf("%d",a[0][1]); printf("%d",a[1][0]) printf("%d",a[1][1]);


Hosted by www.Geocities.ws

1