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);
}
Answers were Sorted based on User's Feedback
Are the variables argc and argv are always local to main?
which one low Priority in c? a)=,b)++,c)==,d)+
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Can a variable be both const and volatile?
what is pointer?
13 Answers HCL, TCS,
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
how to find anagram without using string functions using only loops in c programming
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Explain how can you tell whether two strings are the same?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Why is not a pointer null after calling free?
1 232 34543 4567654 can anyone tell me how to slove this c question