main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / kamalg
5 20 1
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
What is a static function in c?
What functions are in conio h?
How can I get random integers in a certain range?
When can a far pointer be used?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
explain what are actual arguments?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Describe the order of precedence with regards to operators in C.
How to Throw some light on the splay trees?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Why doesnt the call scanf work?
Explain what are the standard predefined macros?
What is printf () in c?
Define recursion in c.
Why main function is special give two reasons?