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 %d\n",x,y);
}
Post New Answer View All Answers
Explain how can type-insensitive macros be created?
What is time null in c?
Can we assign integer value to char in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
write a program to copy the string using switch case?
What are the loops in c?
which is an algorithm for sorting in a growing Lexicographic order
Is fortran still used today?
What are bitwise shift operators in c programming?
List the variables are used for writing doubly linked list program.
What is a pointer value and address in c?
Why c is procedure oriented?
Is exit(status) truly equivalent to returning the same status from main?
Do you know what are the properties of union in c?