-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHRITVIK0.CPP
More file actions
53 lines (52 loc) · 577 Bytes
/
HRITVIK0.CPP
File metadata and controls
53 lines (52 loc) · 577 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<stdio.h>
#include<conio.h>
main()
{
int a;
int clrscr();
printf("Enter The Value= ");
scanf("%d",&a);
switch(a)
{
case 1:
printf("January");
break;
case 2:
printf("February");
break;
case 3:
printf("March");
break;
case 4:
printf("April");
break;
case 5:
printf("May");
break;
case 6:
printf("June");
break;
case 7:
printf("July");
break;
case 8:
printf("August");
break;
case 9:
printf("September");
break;
case 10:
printf("October");
break;
case 11:
printf("November");
break;
case 12:
printf("December");
break;
default:
printf("Wrong Value");
break;
}
getch();
}