Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Can a pointer be static?

1141


What is the most efficient way to count the number of bits which are set in an integer?

1124


Write a program to implement queue.

1185


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

1181


How do you list a file’s date and time?

1117


What is the difference between ‘g’ and “g” in C?

4101


What does %p mean c?

1123


What is variable declaration and definition in c?

969


What is indirection in c?

1127


Why malloc is faster than calloc?

1126


What are pointers? What are stacks and queues?

1224


What is variable and explain rules to declare variable in c?

1186


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

1353


Can a pointer point to null?

1123


Describe how arrays can be passed to a user defined function

1351