A
Q. What is the output of this C code?
Code:
#include <stdio.h>
int main()
{
char chr;
chr = 128;
printf("%d
", chr);
return 0;
}
int main()
{
char chr;
chr = 128;
printf("%d
", chr);
return 0;
}
- Correct Answer - Option(B)
- Views: 38
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.