What is the output of following program ?
int
main()
{
int x = 5;
printf("%d %d %d\n", x, x << 2, x >> 2);
}
Answer Posted / qint
5 20 1
Is This Answer Correct ? | 72 Yes | 6 No |
Post New Answer View All Answers
What is the meaning of && in c?
why wipro wase
What is enumerated data type in c?
Tell me about low level programming languages.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How do you use a pointer to a function?
Why is main function so important?
What is pass by value in c?
What are the types of unary operators?
What is a wrapper function in c?
What do you mean by a sequential access file?
What happens if header file is included twice?
What is the use of void pointer and null pointer in c language?
What is the size of structure in c?
What is maximum size of array in c?