Skip to content

Commit eb534ea

Browse files
committed
Rename problem4.c to problem4AlternativeApproach.c
1 parent 1bdddd1 commit eb534ea

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

problem4AlternativeApproach.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
Solved by
3+
Ashwin S
4+
Dept of CSE
5+
*/
6+
7+
#include <stdio.h>
8+
int main(void)
9+
{
10+
int a;
11+
scanf("%d", &a);
12+
printf("%x",a);
13+
return 0;
14+
}

0 commit comments

Comments
 (0)