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