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);
}
Post New Answer View All Answers
Why do we use stdio h and conio h?
C program to find all possible outcomes of a dice?
What is string function c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Define recursion in c.
What is a pointer value and address in c?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Describe the steps to insert data into a singly linked list.
Stimulate calculator using Switch-case-default statement for two numbers
Write a program that accept anumber in words
Does c have enums?
How can I sort a linked list?
What do you understand by normalization of pointers?
what is event driven software and what is procedural driven software?
What are logical errors and how does it differ from syntax errors?