main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Post New Answer View All Answers
What is the purpose of scanf() and printf() functions?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is define directive?
Can you pass an entire structure to functions?
Explain the binary height balanced tree?
What is getch c?
When should volatile modifier be used?
What are Macros? What are its advantages and disadvantages?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What’s a signal? Explain what do I use signals for?
Is c weakly typed?
What is new line escape sequence?
What is the difference between exit() and _exit() function?
How can you increase the size of a dynamically allocated array?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?