1. What is the output of this C code? #include void main(){int x = 97;int y = sizeof(x++);printf("X is %d", x);}
1. What is the output of this C code?
#include <stdio.h>
void main()
{
int x = 97;
int y = sizeof(x++);
printf("X is %d", x);
}
Comments
Post a Comment