-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathDoctorsAppointment.c
194 lines (188 loc) · 5.2 KB
/
DoctorsAppointment.c
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/* Preprocessor Declaration */
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<conio.h>
struct node //Declaration of structure NODE
{
int serial;
char name[100];
char phone[12];
struct node *next;
};
typedef struct node node;
int appointment=20;
node *head;
/* Functions Start */
void Appoint(node*pointer) //Function Declaration and Definition for Appointment Portal
{
printf("\t\t\t*********Appointment Portal*********\n");
int serial;
char key;
if(appointment==0)
{
printf("Sorry! Today's Appointment Full. Try after 8 P.M. for tomorrows appointment\n\n\n");
printf("Press any key to continue...");
scanf("%c",&key);
if(key>=0)
return;
}
else
{
if(pointer==NULL)
{
head=(node*)malloc(sizeof(node));
pointer=head;
pointer->next=NULL;
printf("Enter your name: ");
getchar();
gets(pointer->name);
phone_tag1:
printf("Enter Mobile Number: ");
gets(pointer->phone);
int len=strlen(pointer->phone);
if(len!=10)
{
printf("Invalid Mobile Number. Try again\n");
goto phone_tag1;
}
int i;
for(i=0;pointer->phone[i]!=NULL;i++)
{
if(pointer->phone[i]<'0' || pointer->phone[i]>'9')
{
printf("Invalid Mobile Number. Try again\n");
goto phone_tag1;
}
}
appointment--;
serial=20-appointment;
pointer->serial=serial;
printf("\n\nAppointment accepted.\n");
printf("Your serial number is %d.\n\n\n",pointer->serial);
printf("Press any key to continue...");
scanf("%c",&key);
if(key>=0)
return;
}
while(pointer->next!=NULL)
{
pointer=pointer->next;
}
pointer->next=(node*)malloc(sizeof(node));
pointer=pointer->next;
pointer->next=NULL;
printf("Enter your name: ");
getchar();
gets(pointer->name);
phone_tag:
printf("Enter your Mobile Number: ");
gets(pointer->phone);
int len=strlen(pointer->phone);
if(len!=10)
{
printf("Invalid Mobile Number. Try again\n");
goto phone_tag;
}
appointment--;
serial=20-appointment;
pointer->serial=serial;
printf("\n\nAppointment accepted.\n");
printf("Your serial number is %d.\n\n\n",pointer->serial);
printf("Press any key to continue...");
scanf("%c",&key);
if(key>=0)
return;
}
}
void Showlist(node *pointer) //Function Declaration and Definition to show appointment list.
{
printf("\t\t\t*********Today's appointment list*********\n");
if(pointer==NULL)
{
printf("No Appointment today!!!\n\n\n");
}
while(pointer!=NULL)
{
printf("%d: ",pointer->serial);
printf("%s (Ph: %s )\n",pointer->name,pointer->phone);
pointer=pointer->next;
}
printf("\n\n\n\nPress enter to go back to Doctor's menu: ");
char key;
getchar();
scanf("%c",&key);
if(key>=0)
{
return;
}
}
/* Functions End */
int main()
{
head=NULL;
char query,query2;
while(1)
{
printf("\t\t\t*********Main Menu*********\n");
main_again:
printf("1.I'm a Patient\n2.I'm the Doctor\n\n\n");
scanf(" %c",&query);
if(query=='1')
{
while(1)
{
printf("\t\t\t*********Patient's Menu*********\n");
printf("1.Book Appointment\n2.Back to main menu.\n\n");
char appoint1;
patient_again:
scanf(" %c",&appoint1);
if(appoint1=='1')
{
Appoint(head);
}
else if(appoint1=='2')
{
break;
}
else
{
printf("Wrong Command!!!\n\n");
goto patient_again;
}
}
}
else if(query=='2')
{
while(1)
{
printf("\t\t\t*********Doctor's Menu*********\n");
printf("1.Show list\n2.Back to main menu.\n\n\n");
scanf(" %c",&query2);
if(query2=='1')
{
Showlist(head);
}
else if(query2=='2')
{
break;
}
else
{
printf("Wrong Command!!!\n\n");
continue;
}
}
}
else if(query2=='2')
{
exit(0);
}
else
{
printf("Wrong Command!!!\n\n");
goto main_again;
}
}
return 0;
}