K
Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
unsigned char c=290;
printf("%d",c);
return 0;
}
int main()
{
unsigned char c=290;
printf("%d",c);
return 0;
}
- Correct Answer - Option(C)
- Views: 197
- Filed under category C Programming
Discusssion
Login to discuss.