Si  No.
Title Of Programs
Source Code In C
Input & Output
Instructions
151.
Write a program that read any integer & test prime or not prime (2).
152.
Write a program that read any integer & test prime or not prime (3).
153.
Write a program that read any integer & test prime or not prime (4).
154.
Write a program that read any integer & test prime or not prime (5).
155.
Write a program that read any integer & test prime or not prime (6).
156.
Write a program that print all prime numbers from 1 to n.
157.
Write a program that print all prime numbers from m to n (m>n).
158.
Write a program that count total prime numbers from 1 to n.
159.
Write a program that displays first n prime numbers.
160.
Write a program that displays first n Fibonacci numbers.
161.
Write a program that print all Fibonacci numbers from 1 to n.
162.
Write a program that read a number & test Fibonacci or not Fibonacci.

10. One Dimensional Array
One
Dimensional
Array
One
Dimensional
Array
One
Dimensional
Array
163.
Write a program that read & display an array.
164.
Write a program that read & display sum (1).
165.
Write a program that read & display sum (2).
166.
Write a program that read & display average (1).
167.
Write a program that read & display average (2).
168.
Write a program that read & display average (3).
169.
Write a program that read an array & display maximum.
170.
Write a program that read an array & display minimum.
171.
Write a program that inserts any number in an array.
172.
Write a program that deletes any number from an array.
173.
Write a program that searches any number from an array.
174.
Write a program that read & sort an array using bubble sort, selection sort, merge sort and insertion sort algorithm in ascending order.
175.
Write a program that read & sort an array using bubble sort, selection sort, merge sort and insertion sort algorithm in descending order.
176.
Write a program that read an array & display medium.
177.
Write a program that displays first n prime numbers.
178.
Write a program that displays first n Fibonacci numbers.
179.
Write a program that reads any decimal number & equivalent binary number.

11. Multi Dimensional Array
Multi Dimensional Array
Multi Dimensional Array
Multi Dimensional Array
180.
Write a program that read & display matrices.
181.
Write a program that adds two matrices.
182.
Write a program that multiplies two matrices.
183.
Write a program that add & multiply two matrices.
184.
Write a program that display Pascal pyramid.
1
2     1
3     3     1
4     6     4     1
5    10    10   5     1

12. String.h
String.h 
String.h
String.h
185.
Write a program that read a line of text & display its length.
186.
Write a program that read a line of text & display it’s in reverse order.
187.
Write a program that read two line of text & copy second line into first line.
188.
Write a program that read two line of text & add second line with first line.
189.
Write a program that compares two strings.
190.
Write a program that compares two strings without case sensitivity.
191.
Write a program that read a line of text & display in lower case.
192.
Write a program that read a line of text & display in upper case.

13. String
(Processing)
Strin
 Processingg
String
Processing
String
Processing
193.
Write a program that convert a line to upper case.
Source Code In C
Input & Output
Instructions
194.
Write a program that convert a line to lower case.
Source Code In C
Input & Output
Instructions
195.
Write a program that read a word & display every character with one space.
Source Code In C
Input & Output
Instructions
196.
Write a program that read a word & display every character with one space in reverse order.
Source Code In C
Input & Output
Instructions
197.
Write a program that read a line of text & display every character in separate line.



198.
Write a program that read a line of text & display every character with ASCII value in separate line.
Source Code In C
Input & Output
Instructions
199.
Write a program that read a line of text & display number of upper case, lower case, digit, space & other character.
Source Code In C
Input & Output
Instructions
200.
Write a program that read a line of text & display number of vowel, consonant, digit, space & other character.
Source Code In C
Input & Output
Instructions
201.
Write a program that read a line of text & display the frequency of every letter.
Source Code In C
Input & Output
Instructions
202.
Write a program that read a line of text & display the frequency of every character.
Source Code In C
Input & Output
Instructions
203.
Write a program that read & display an array of string.
Source Code In C
Input & Output
Instructions
204.
Write a program that read an array of string & display in alphabetic order (with case sensitive).
Source Code In C
Input & Output
Instructions
205.
Write a program that read an array of string & display in alphabetic order (without case sensitive).
Source Code In C
Input & Output
Instructions
206.
Write a program that read any binary number & display equivalent decimal number.
Source Code In C
Input & Output
Instructions
207.
Write a program that read any octal number & display equivalent decimal number.
Source Code In C
Input & Output
Instructions
208.
Write a program that read any hexadecimal number & display equivalent decimal number.
Source Code In C
Input & Output
Instructions

14. File Write
File Write
File Write
File Write
209.
Write a program that writes 1 to 10 in a file.
Source Code In C
Input & Output
Instructions
210.
Write a program that write the following pyramid in a file.
1
2     2
3     3     3
4     4     4     4
5     5     5     5     5
Source Code In C
Input & Output
Instructions
211.
Write a program that read an array & write in a file.
Source Code In C
Input & Output
Instructions
212.
Write a program that read an array & write in a file with ascending order.
Source Code In C
Input & Output
Instructions

15. File Read
File Read
File Read
File Read
213.
Write a program that read n numbers from a file & display in output screen.
Source Code In C
Input & Output
Instructions
214.
Write a program that read an array until EOF (End Of File) (1).
Source Code In C
Input & Output
Instructions
215.
Write a program that read an array until EOF (End Of File) (2).
Source Code In C
Input & Output
Instructions
216.
Write a program that read every character from a file & display in output screen.
Source Code In C
Input & Output
Instructions
217.
Write a program that read display content of this file in output screen.
Source Code In C
Input & Output
Instructions
218.
Write a program that read every character from a file & display in upper case.
Source Code In C
Input & Output
Instructions
219.
Write a program that read every character from a file & display in lower case.
Source Code In C
Input & Output
Instructions
220.
Write a program that count number of upper case, lower case, digit, space & other character in a file.
Source Code In C
Input & Output
Instructions
221.
Write a program that displays the frequency of every character in a file.
Source Code In C
Input & Output
Instructions

16. File Read & Write
File Read & Write
File Read & Write
File Read & Write
222.
Write a program that read first n numbers from a file & display in another file.
Source Code In C
Input & Output
Instructions
223.
Write a program that read all numbers from a file Data.in & display even numbers in Even.out, odd numbers in odd.out.
Source Code In C
Input & Output
Instructions
224.
Write a program that read all numbers from a file & write another file in descending order.




17. Structure
Structure
Structure
Structure
225.
Write a program that read & display any students name, roll & mark.
Source Code In C
Input & Output
Instructions
226.
Write a program that read & display some students name, roll & mark.
Source Code In C
Input & Output
Instructions
227.
Write a program that read some students name, roll & mark from a file & display in screen.
Source Code In C
Input & Output
Instructions
228.
Write a program that read some students name, roll & mark from a file, sort & display in screen according to mark.
Source Code In C
Input & Output
Instructions
229.
Write a program that read some students name, three subjects mark & display name, total, average mark & grade point average.
Source Code In C
Input & Output
Instructions