| Question |
main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
|
Question Submitted By :: Naveed |
|
I also faced this Question!! |
Rank |
Answer Posted By |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 1 |
5
20
5
|
| Mannucse [Kiona] |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 2 |
5 20 1
|
| Padmarao |
| |
|
|
| |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 3 |
5
10
2
|
| Hemanth |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 4 |
Ans:
5 20 1
|
| Suresh Reddy |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 5 |
5
20
0
|
| Rahul |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 6 |
5
20
1.25
|
| Nagi |
| |
|
Re: main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output? |
Answer
# 7 |
5
20
1
kuchh log pagal hain
%d aur int datatype main float value print karate hain(1.25)
hehehehe........
|
| Dgsfg |
| |
|
|
|
|
|
| |