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
Is c dynamically typed?
What is this infamous null pointer, anyway?
List the variables are used for writing doubly linked list program.
How do you list a file’s date and time?
What are register variables in c?
What is 'bus error'?
what are the different storage classes in c?
Why void main is used in c?
write a program to find out prime number using sieve case?
How many types of arrays are there in c?
What is pointers in c?
What is mean by data types in c?
Can include files be nested? How many levels deep can include files be nested?
What are identifiers and keywords in c?
Explain the bubble sort algorithm.