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
How can my program discover the complete pathname to the executable from which it was invoked?
How would you sort a linked list?
Are global variables static in c?
Find MAXIMUM of three distinct integers using a single C statement
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is the use of clrscr?
Output for following program using for loop only * * * * * * * * * * * * * * *
What is %d used for?
Is null always equal to 0(zero)?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Write a program of prime number using recursion.
What do you mean by recursion in c?