main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / padmarao
5 20 1
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is a structure in c language. how to initialise a structure in c?
Who developed c language?
Is linux written in c?
Explain what is the difference between functions getch() and getche()?
What is a macro in c preprocessor?
Explain what are the __date__ and __time__ preprocessor commands?
What is the use of volatile?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is a stream in c programming?
How can I delete a file?
What is boolean in c?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is the use of static variable in c?
what are the 10 different models of writing an addition program in C language?