main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / dgsfg
5
20
1
kuchh log pagal hain
%d aur int datatype main float value print karate hain(1.25)
hehehehe........
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What are the types of pointers in c?
Why header file is used in c?
How does sizeof know array size?
What is a macro, and explain how do you use it?
What is the default value of local and global variables in c?
Why c is called top down?
Which type of language is c?
What's the right way to use errno?
What does c mean in standard form?
Why is extern used in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Difference between macros and inline functions? Can a function be forced as inline?
Explain the use of function toupper() with and example code?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are loops c?