C Programming - Pointers - Discussion
Discussion Forum : Pointers - Find Output of Program (Q.No. 11)
11.
What will be the output of the program?
#include<stdio.h>
int main()
{
int arr[2][2][2] = {10, 2, 3, 4, 5, 6, 7, 8};
int *p, *q;
p = &arr[1][1][1];
q = (int*) arr;
printf("%d, %d\n", *p, *q);
return 0;
}
Discussion:
58 comments Page 6 of 6.
Prathyusha said:
8 years ago
Thank you @Chethan.
Sairam said:
7 years ago
Thank you @Rahul.
Sanjay said:
1 decade ago
Thank you sagar.
Yeswanth said:
1 decade ago
Well said rahul.
Nik said:
4 years ago
Thanks @Rahul.
(1)
VENU said:
1 decade ago
@SAGAR
Its 7.
Its 7.
Pooja said:
1 decade ago
Thanks Rahul.
Swap said:
8 years ago
Thanks all.
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers