brain teaser
main()
{
char thought[2][30]={"Don't walk infront me..","i am not follow"};
printf("%c%c",*(thought[0]9),*(*(thought 0)5));
}
What will be the output of this code???
{
char thought[2][30]={"Don't walk infront me..","i am not follow"};
printf("%c%c",*(thought[0]9),*(*(thought 0)5));
}
What will be the output of this code???
0