Si  No.
Title Of Programs
Source Code In C
Input & Output
Instructions
075
A Program That Read Three Numbers & Display Maximum.
076.
A Program That Read Three Numbers & Display Minimum.
077.
A Program That Read Three Numbers & Display Medium.
078.
A Program That Read Mark & Display Pass Or Fail.

6. Switch
Switch
Switch
Switch
079.
A Program That Read Digit & Display By Spelling.
080.
A Program That Read Any Number & Display Equivalent Roman Number.

7.Series
Series
Series
Series
081.
1+2+3+4+……….up to n’th term.
082.
2+4+6+8+……….up to n’th term.
083.
1+3+5+7+……….up to n’th term.
084.
4+12+20+28+……….up to n’th term.
085.
2+5+8+11+……….up to n’th term.
086.
1.2+2.3+3.4+……….up to n’th term.
087.
2.1+5.3+8.5+……….up to n’th term.
088.
1.3+3.5+5.7+……….up to n’th term.
089.
12+22+32……….up to n’th term.
090.
1.12+2.32+3.52……….up to n’th term.
091.
1.22+2.32+3.42……….up to n’th term.
092.
12.22+22.32+32.42……….up to n’th term.
093.
1.2.3+2.3.4+3.4.5+……….up to n’th term.
094.
1.3.5.7+3.5.7.9+5.7.9.11+……….up to n’th term.
095.
2.5.8+5.8.11+8.11.14+……….up to n’th term.
96
5.6.7+6.7.8+7.8.9+……….up to n’th term.

8. Pyramid
Pyramid
Pyramid
Pyramid
097.
1
1    2
1    2    3
098.
1
2    2
3    3    3
099.
1
0    0
1    1    1
100.
2
3    4
4    5   6
101.
1
2    3
3    4    5
102.
0
1    0
0    1   0
103.
1
0    1
1    0   1
104.
A
B    B
C    C   C
105.
A
A    B
A    B   C
106.
1     2    3
1     2
1
107.
3    3    3
2    2
1
108.
1     1    1
0     0
1
109.
1     0    1
1     0
1
110.
4    5    5
3    4
2
111.
3    4    5
2    3
1
112.
0     1    0
1     0
0
113.
1     0    1
0     1
1
114.
C     C    C
B     B
A
115.
A     B    C
A     B
A
116.
             1
      1    2
1    2    3
117.
             1
      2    2
3    3    3
118.
             1
      0    0
1    1    1
119.
             1
      1    0
1    0    1
120.
             1
       2          2
 3          3        3
121.
             A
       B          B
 C          C        C
122.
             A
       B          B
 C          C        C
      B           B
            A
123.
             1
       2          2
 3          3         3
      2           2
            1
124.
1
2     2
3     3    3
2     2
1
125.
              1
      2     2
3    3     3
      2     2
              1
126.
                          1
              1         2        1
 1          2         3        2       1
127.
                           1
              1          2         1
 1          2          3         2       1
             1          2         1
                         1
128.
                              1
                       2     3     2
                 3    4     5     4      3
           4    5    6     7     6      5    4
           4    5    6     7     6      5    4
                 3    4     5     4      3
                       2     3     2
                              1
129.
                              1
                       2     3     2
                 3    4     5     4      3
           4    5    6     7     6      5    4
        4    5    6     7     6      5    4
                 3    4     5     4      3
                       2     3     2
                              1
130.
1
2      3
4      5     6
7      8     9      10
11  12   13     14     15
131.
1
2      1
3      3     1
4      6     4      1
5    10   10     5     1
132.
1
1      1
1      2     1
1      3     3      1
1     4     6       4      1
1     5    10     10    5     1
1     6    15     20   15   6    1

9. Loop
Loop
Loop
Loop
133.
A Program That Read A Positive Integer & Display Its Factorial.
134.
A Program That Read A Positive Integer & Display Sum Of Its Digit.
135.
A Program That Read A Positive Integer & Display Reverse.
136.
A Program That Read Any Decimal Number & Display Equivalent Binary number.
137.
A Program That Read Any Decimal Number & Display Equivalent Octal number.
138.
A Program That Read Any Decimal Number & Display Equivalent Hexadecimal number.
139.
A Program That Read Two numbers & Display GCD (Greatest Common Divisor).
140.
A Program That Read Two numbers & Display LCM (Least Common Multiple).
141.
A Program That Read Two numbers (a,b) & Display ab (a to the power b).
142.
i) A Program That Read Two numbers (n,r) & Display nPr (Permutation).
143.
ii) A Program That Read Two numbers (n,r) & Display nPr (Permutation).
144.
iii) A Program That Read Two numbers (n,r) & Display nPr (Permutation).
145
i) A Program That Read Two numbers (n,r) & Display nCr (Combination).
146.
ii) A Program That Read Two numbers (n,r) & Display nCr (Combination).
147.
iii) A Program That Read Two numbers (n,r) & Display nCr (Combination).
148.
iv) A Program That Read Two numbers (n,r) & Display nCr (Combination).
149.
A Program That Read Any Integer & Display Its Digital Root.
150.
A Program That Read Any Integer & Test Prime Or Not Prime.