int x=5;
printf("%d%d%d",x,x<<2,x>>2);
Answers were Sorted based on User's Feedback
How do I access command-line arguments?
How can I insert or delete a line (or record) in the middle of a file?
Using which language Test cases are added in .ptu file of RTRT unit testing???
what are the general concepts of c and c++
what is constant pointer?
Explain what is output redirection?
what is the use of a array in c
How do I determine whether a character is numeric, alphabetic, and so on?
write a program in c language for the multiplication of two matrices using pointers?
what is the mean of c languages.
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.