main()
{
int a=5;
printf(?%d,%d,%d\n?,a,a< <2,a>>2);
}
Answer: 5,20,1 please explain this code in detail
Answer Posted / ganeshuit
hey please tell me why there is ? sign in printf().and what
is use of it?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a good way to implement complex numbers in c?
Write a C program to count the number of email on text
What is #define?
Is c a great language, or what?
Why is c called a mid-level programming language?
Explain About fork()?
What are void pointers in c?
What is the use of f in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is the difference between malloc() and calloc() function in c language?
What is the general form of function in c?
What is the difference between exit() and _exit() function in c?
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.
Why is event driven programming or procedural programming, better within specific scenario?
Why #include is used in c language?