Q11
Single choice
What type of problem will result if the following statement is used?
int main()
{short int a;
unsigned short int=b32768;
a=b;
printf( " a = %d", a);
b=65535;
a=b;
printf( " a = %d", a);
}