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);
}
Answer Posted / rh
Please explain how ?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List the different types of c tokens?
Explain what is wrong with this statement? Myname = ?robin?;
What type of function is main ()?
What does %c do in c?
How do you determine whether to use a stream function or a low-level function?
How can you increase the allowable number of simultaneously open files?
Explain pointers in c programming?
Simplify the program segment if X = B then C ← true else C ← false
What is the use of structure padding in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can you access memory located at a certain address?
What is string concatenation in c?
What is #define?
What is the use of void pointer and null pointer in c language?
Can we change the value of constant variable in c?