Home
Explore
Places
win7
win8
Coding
Friday, 8 February 2013
16
What will be output ?
#include<stdio.h>
void main()
{
char data[2][3][2]={0,1,2,3,4,5,6,7
,8,9,10,11};
printf("%o",data[0][2][1]);
}
16
2013-02-08T07:18:00-08:00
cvs
prgm|