@@ -46,6 +46,30 @@ MEDIUM
46
46
47
47
10. Program to check if entered number is an Armstrong Number.
48
48
49
+ 11. Program to convert Decimal Number to Binary
50
+
51
+ 12. Program to convert a Binary Number to Decimal Number
52
+
53
+ 13. Program to convert Decimal Number to Octal Number
54
+
55
+ 14. Program to convert a Octal Number to Decimal Number
56
+
57
+ 15. Program to convert a Hexadecimal Number to Decimal Number
58
+
59
+ 16. Program to convert Decimal Number to Hexadecimal Number
60
+
61
+ 17. Program to evaluate a POSTFIX expression using Stack
62
+
63
+ 18. Program to convert an INFIX expression to POSTFIX using Stack
64
+
65
+ 19. Program to implement QUEUE using Linked List
66
+
67
+ 20. Program to implement PRIORITY QUEUE using Linked List
68
+
69
+ 21. Program to implement NON-CIRCULAR QUEUE using Arrays
70
+
71
+ 22. Program to implement DEQUE using Linked List
72
+
49
73
PRACTITIONER
50
74
51
75
1. Program to reverse a number.
@@ -97,3 +121,25 @@ v) 55555
97
121
- Push an element in Stack
98
122
- Pop an element from Stack
99
123
- Display the elements in Stack
124
+
125
+ HARD
126
+
127
+ 1. Program to Print the following Pattern
128
+ 555555555
129
+ 544444445
130
+ 543333345
131
+ 543222345
132
+ 543212345
133
+ 543222345
134
+ 543333345
135
+ 544444445
136
+ 555555555
137
+
138
+ 2. Program to implement the concept of Sparse Matrix
139
+
140
+ 3. Program to demonstrate the use of storage classes like static, register, etc
141
+
142
+ 4. Program to demonstrate the use to static variables and functions.
143
+
144
+ 5. Program to demonstrate the concept of inheritance
145
+
0 commit comments