main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / vinod
8
| Is This Answer Correct ? | 8 Yes | 33 No |
Post New Answer View All Answers
What is extern keyword in c?
What are the different types of C instructions?
What is pragma c?
What is an lvalue?
Which header file is used for clrscr?
to find the closest pair
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What are shell structures used for?
What is void main () in c?
What is the method to save data in stack data structure type?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain main function in c?
Explain how can I convert a number to a string?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list