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);
}
A.
Truncation
B.
Pointer subterfuge
C.
Sign error
D.
Function-pointer clobbering