#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?
Answer Posted / nikhil kumar sahu
Error...
one Right parenthesis is missing for printf function
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Can we compile a program without main() function?
How to Throw some light on the splay trees?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is structure of c program?
What oops means?
a c code by using memory allocation for add ,multiply of sprase matrixes
How can I sort a linked list?
Explain the difference between malloc() and calloc() function?
What are predefined functions in c?
How to define structures? ·
What does %p mean?
Which is better malloc or calloc?
How does struct work in c?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is #line?