ADITI
Company
Programming
Program
Q. Give the output for the following program.
#define STYLE1 char
main()
{
typedef char STYLE2;
STYLE1 x;
STYLE2 y;
clrscr();
x=255;
y=255;
printf("%d %dn",x,y);
}
Read Solution (Total 1)
-
- garbage value?
- 10 years agoHelpfull: Yes(0) No(0)
ADITI Other Question