โช Choose the correct option.
What is the output of this C code?
#include
int main()
{
short int i;
scanf("%hd", &i);
printf("%hd", i); return 0;
}
#include
int main()
{
short int i;
scanf("%hd", &i);
printf("%hd", i); return 0;
}