#include<stdio.h>

int main()
{
int a[3][3][2]=
{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18};
printf("%d\n",*(*(*a+1));

return 0;
}

What will be the output of the above question? And how?



#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,..

Answer / nikhil kumar sahu

Error...
one Right parenthesis is missing for printf function

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More C Interview Questions

What is the difference between malloc calloc and realloc in c?

0 Answers  


What does static variable mean in c?

0 Answers  


What is the stack in c?

0 Answers  


What is the method to save data in stack data structure type?

0 Answers  


swap 2 numbers without using third variable?

0 Answers   IBS,






Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.

0 Answers  


why integer range between -327680to+32767

2 Answers  


Why is C language being considered a middle level language?

0 Answers  


Can you return null in c?

0 Answers  


What is string length in c?

0 Answers  


what is printf

5 Answers   MVSR, Satyam,


How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST

6 Answers   Adobe, Huawei,


Categories