#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
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain indirection?
What is a double c?
What is scope and lifetime of a variable in c?
Write a simple code fragment that will check if a number is positive or negative.
Is c still relevant?
What are actual arguments?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Are pointers integers in c?
What is clrscr in c?
Explain pointer. What are function pointers in C?
Who is the founder of c language?
Why do we use main function?