what is the output of the following program?
main()
{
printf("%c","abcdefghi"[6]);
}
main()
{
printf("this contains %d",printf("\n"));
}
main()
{
int a[]={1,2,3,4,5};
int *p=a;
int **p2=a;
printf("%d,%d",sizeof(p),sizeof(p2));
}
assume int takes 4 bytes
main()
{
int j[]={1,2,3,4};
printf("%d",*(j+j[0]));
}
static int h;
int main()
{
int h=call();
printf("h=%d",h);getch();
}
call()
{return h;}