main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answers were Sorted based on User's Feedback
What are the key features in c programming language?
Find greatest number out of 10 number without using loop.
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Explain what is the best way to comment out a section of code that contains comments?
How can I swap two values without using a temporary?
How does normalization of huge pointer works?
Who invented b language?
What is the benefit of using #define to declare a constant?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What are header files and explain what are its uses in c programming?
What are dangling pointers in c?