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
What is Dynamic Initialization.
Why we use void main in c?
WHAT IS C?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
Do you have any idea about the use of "auto" keyword?
Describe static function with its usage?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
hi send me sample aptitude papers of cts?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
explain memory layout of a C program