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
Write a program to check palindrome number in c programming?
Explain high-order and low-order bytes.
What is structure data type in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Explain zero based addressing.
How many loops are there in c?
When c language was developed?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Is there a built-in function in C that can be used for sorting data?
Explain About fork()?
What is the use of a semicolon (;) at the end of every program statement?
What are c header files?
how to find anagram without using string functions using only loops in c programming
What is the difference between the expression “++a” and “a++”?
Write a code to determine the total number of stops an elevator would take to serve N number of people.