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 to write a program which adds two numbers without using semicolon in c
What is key word in c language?
How to compare array with pointer in c?
what is the difference between definition and declaration? give me some examples.
write a program that finds the factorial of a number using recursion?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Is c dynamically typed?
Can we add pointers together?
where are auto variables stored? What are the characteristics of an auto variable?
In which layer of the network datastructure format change is done
Write a c program to build a heap method using Pointer to function and pointer to structure ?
what is constant pointer?