#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 / nikhil kumar sahu
Error...
one Right parenthesis is missing for printf function
| Is This Answer Correct ? | 7 Yes | 0 No |
how to find turn around time in operating system?
write a program which counts a product of array elements lower than 10.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
What extern c means?
Are global variables static in c?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is the difference between constant pointer and constant variable?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
c program for searching a student details among 10 student details
How to implement variable argument functions ?
What is the size of enum in bytes?