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
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What is the difference between fork() and vfork()?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
Write code for atoi(x) where x is hexadecimal string.
can anyone please tell about the nested interrupts?
What is a string?
write a function for strtok()??
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?