#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


Please Help Members By Posting Answers For Below Questions

What is the advantage of c?

613


What is the difference between text and binary i/o?

596


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

1574


What is volatile keyword in c?

587


Whats s or c mean?

597






What is the best style for code layout in c?

634


What oops means?

588


Why header file is used in c?

582


a program that can input number of records and can view it again the record

1488


What is the difference between if else and switchstatement

1317


What is the correct declaration of main?

681


Can you please explain the scope of static variables?

608


Is that possible to store 32768 in an int data type variable?

694


How do you redirect a standard stream?

628


How does sizeof know array size?

634