-
Notifications
You must be signed in to change notification settings - Fork 0
/
final_lab11.c
41 lines (28 loc) · 946 Bytes
/
final_lab11.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
#include <stdio.h>
#include <stdlib.h>
/* Including Files */
#include "l11q1.c"
//--------------------------------------------------------
/* Protoyping files*/
int l11q1();
//--------------------------------------------------------
int final_lab11()
{
int choice;
printf("\n\n-------------------------Lab-11 Programs:-------------------------\n\n");
printf("0.Exit Lab-11:\n"); // -------> changes needed
printf("1.Menu driven program for binary search tree.\n");
do
{
printf("\n\t\tEnter Lab-11 Program number : ");
scanf("%d",&choice);
switch(choice)
{
case 0: printf("\n\n--------------------------Lab-11 Exited---------------------------\n");
break;
case 1: l11q1();
break;
}
} while (choice != 0);
return 0;
}