Question:What would be printed on the standard output as a result of the following code snippet?
#include<stdio.h>
main()
{
        unsigned char a=255;
        a = a+1;
        printf("%d",a);
        return 0;
}
 

A Undefined value 

B 256 

C 1 

D 0 

E -1 

+ Answer
+ Report
Total Preview: 987

Copyright © 2024. Powered by Intellect Software Ltd