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 / syamkumarm

-1 -1

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

764


What are the usage of pointer in c?

692


Can we assign string to char pointer?

574


What does d mean?

568


How do you write a program which produces its own source code as output?

596






why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

598


What is meant by errors and debugging?

637


Can one function call another?

614


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

577


How can you increase the allowable number of simultaneously open files?

584


What is "Duff's Device"?

691


In a switch statement, what will happen if a break statement is omitted?

596


When should the const modifier be used?

643


What is the default value of local and global variables in c?

549


What is sizeof array?

598