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
how to write a c program to print list of fruits in alpabetical order?
Why static variable is used in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is difference between structure and union?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is the significance of scope resolution operator?
Explain the difference between strcpy() and memcpy() function?
What are pointers? What are stacks and queues?
What is declaration and definition in c?
Write the Program to reverse a string using pointers.
Differentiate between calloc and malloc.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What are conditional operators in C?
How can you increase the allowable number of simultaneously open files?