forked from adee-dev/clg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp1o.txt
43 lines (43 loc) · 823 Bytes
/
p1o.txt
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
[liveuser@localhost-live clg]$ g++ DSA_practical_assignment_01.cpp
[liveuser@localhost-live clg]$ ./a.out
Book Tree Creation
1.Create
2.Display
3.Quit
Enter your choice : 1
Enter the name of Book:
cpp
Enter the numbers of Chapters is the Book:
2
Enter the name of the Chapter:
datatypes
Enter the number of sections in the Chapter: datatypes
1
Enter the name of Section:
int_char_bool
Enter the name of the Chapter:
inheritance
Enter the number of sections in the Chapter: inheritance
1
Enter the name of Section:
inheritance
Book Tree Creation
1.Create
2.Display
3.Quit
Enter your choice : 2
Book Name : cpp
Chapter : 1
1) datatypes
Sections :
1) int_char_bool
Chapter : 2
2) inheritance
Sections :
1) inheritance
Book Tree Creation
1.Create
2.Display
3.Quit
Enter your choice : 3
[liveuser@localhost-live clg]$