main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / mannucse
5
20
5
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
What are the applications of c language?
What is the use of volatile?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Write a program with dynamically allocation of variable.
What is a structure member in c?
Can the size of an array be declared at runtime?
how to create duplicate link list using C???
What are the usage of pointer in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is size of union in c?
Explain what are the __date__ and __time__ preprocessor commands?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is indirection? How many levels of pointers can you have?
Explain the difference between malloc() and calloc() function?