#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 |
What are the usage of pointer in c?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
How is = symbol different from == symbol in c programming?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
What is c value paradox explain?
What are logical errors and how does it differ from syntax errors?
What are global variables?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
write a c program to print "Welcome" without using semicolon in the whole program ??
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;