main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / nagi
5
20
1.25
| Is This Answer Correct ? | 2 Yes | 13 No |
Post New Answer View All Answers
How can I open a file so that other programs can update it at the same time?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is the difference between formatted&unformatted i/o functions?
How do you search data in a data file using random access method?
Can the “if” function be used in comparing strings?
Write the syntax and purpose of a switch statement in C.
Is boolean a datatype in c?
Is printf a keyword?
What is the use of header files?
What are the modifiers available in c programming language?
What are called c variables?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Why is struct padding needed?
Explain why C language is procedural?
List the difference between a "copy constructor" and a "assignment operator"?