#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 |
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
What are the types of c language?
what is a c-language.what is do.
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
c program to subtract between two numbers without using '-' sign and subtract function.
wat are the two methods for swapping two numbers without using temp variable??
Write a program to identify if a given binary tree is balanced or not.
What is realloc in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is #line used for?
How can I read and write comma-delimited text?
What's the difference between calloc() and malloc()?