Skip to content

Commit 302fdf0

Browse files
committed
Create problem33
1 parent 7ccc14f commit 302fdf0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

problem33

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//Solved by Lokesh Kumar, Dept of IT
2+
33. what is the output of the program
3+
4+
main()
5+
6+
{
7+
8+
int c=5;
9+
10+
printf("%d %d %d",c,c<<2,c>> 2);
11+
12+
}
13+
14+
15+
OUTPUT :
16+
5 20 1

0 commit comments

Comments
 (0)