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
Write a program to print fibonacci series without using recursion?
Write a program to print factorial of given number without using recursion?
How main function is called in c?
What is data structure in c language?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
What is calloc malloc realloc in c?
What is union in c?
I heard that you have to include stdio.h before calling printf. Why?
Why is c still so popular?
What is malloc and calloc?
What is ambagious result in C? explain with an example.
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
how could explain about job profile
What is the advantage of an array over individual variables?
How can I change the size of the dynamically allocated array?