1,411 views
3 votes
3 votes
main( )
{
int n[3][3] = {
2, 4, 3,
6, 8, 5,
3, 5, 1
} ;
printf ( "\n%d %d %d", *n, n[3][3], n[2][2] ) ;
}

1 Answer

Related questions

7 votes
7 votes
3 answers
1
Parshu gate asked Nov 20, 2017
780 views
What is the output of the following program?#include<stdio.h int main() { int array[]={10, 20, 30, 40}; printf(“%d”, -2[array]); return 0; }$-60$$-30$$60$Garbage valu...
1 votes
1 votes
0 answers
2
Ashish Roy 1 asked Mar 16, 2019
1,683 views
In the above 4 Statements which would print 123 as output ? Explain also.
1 votes
1 votes
1 answer
3
Na462 asked Jan 8, 2019
1,437 views
#include <stdio.h>main (){unsigned x = -10;int X = 20;if (X x) printf ("Hello");else{ printf ("%d",x); printf ("Jello"); }}
0 votes
0 votes
1 answer
4
shekhar chauhan asked Jun 4, 2016
355 views
main(){char *c , ch[10];int *i , j[10];float *f , g[10];int x;c = ch;i = j;f = g;for ( x=0 ; x<=10 ; x++ )printf("%p %p %p\n" , c+x , i+x , f+x);}