C Programm
C Programm
Program 2: WAP to show various ways in which “printf” can be used to display
various messages.
Program 3: WAP to ask user to enter two numbers and find sum of two numbers.
Program 4: WAP to calculate simple interest(p*r*t) and compound interest.
Simple interest: -
Compound interest: -
Program 5: WAP to ask user to enter marks of 5 subject calculate average marks.
Program 6: WAP to convert centigrade temperature to Fahrenheit and vice versa.
Program 7: WAP to find area of mathematical objects like circle, rectangle and
triangle.
Program 10: WAP to enter your DOB and calculate how many days you have lived.
Program 11: WAP to enter time in minutes and find its equivalent hrs and minutes.
Topic 2: Operators (modulus operator, logical operators, conditional(ternary)
operator) and expressions
Program 1: WAP to ask user to enter two numbers and display after swapping of
numbers.
Program 2: WAP to ask user to enter his age and display whether he is eligible for
casting a vote or not. If his age is <18 he is not eligible.
Program 6: WAP to ask user to enter his DOB and calculate how many
independence days he had seen in his life.
Program 7: WAP to ask user to enter three numbers and find greater out of three
numbers.
Program 2: WAP to find that year entered is leap year or not using if-else.
Program 7: WAP to calculate electricity bill of a user. Ask user to enter units
consumed.
If units<=200 each unit is charged at Rs.2
If units>200 and units<=400, for first 200 units charged at Rs.2 and other unit is
charged at Rs.4
Program 8: WAP to calculate area of mathematical objects using switch. Ask user
to press ‘r’ for area of rectangle ‘s’ for area of square and ‘c’ for area of circle.
Make sure that your program is not case sensitive.
Topic 4: Loops (while, do while and for)
Program 6: WAP to find even and odd numbers from first 10 numbers.
Program 7: WAP to print A-Z n the form of AB CD EF....
Program 8: WAP to ask user to enter two numbers and find sum of numbers in
between those two numbers.
Program 9: WAP to ask user to enter a number and display multiplication table in
the form of
N*1=....
N*2=....
.
.
N*10=....
Program 10: WAP to ask user to enter numbers 10 times, count how many of
them are positive, how many are negative and how many zeros.
Topic 5: Loops and Nested loops
Program 1: WAP to show the working of call by value and call by reference for
sum of two numbers.
Program 2: WAP to calculate the sum of all the elements of an array using
functions.
Program 3: WAP to find the greatest and smallest from the elements of array
using functions.
Program 4: WAP to calculate the sum of all elements of an array that are
divisible by 5 and are even.
Program 5: WAP to swap the values of two variables using call by value and
call by reference.
Topic 8: Recursion
Program 7: WAP to find sum of all the digits of number and number can be of
any length.
Topic : 9 1-Dimensional array
Program 1: WAP to store integer data in an array, and print the elements of the array.
Program 10: WAP to display the contents of the elements of array that are at
odd/even positions.
Program 11: WAP to enter 10 different numbers in an array, then adding the
numbers that are divisible by 3 and displaying the result.
Program 12: WAP to store elements in array, insert a new element in array by asking
user to enter location and number to be inserted. Display contents of array after
insertion.
Program 13: WAP to delete any element from array and display content of array after
deletion.
Program 14: WAP to create 2 arrays of 1D. Enter data in them. Create third array
and add the contents of 1 st and 2nd array and store answer in 3 rd array.
Program 15: WAP to create array for storing marks of 60 students and find
(a) Highest marks (b) Lowest marks
(c) Average marks. (d) Count how many students failed(marks<30).
Topic 10 2-Dimensional array
Program 6: WAP to enter 3X3 array. Display the array in the form of a matrix.
Topic 11. Strings
Program 8: WAP to find number of occurrences of “e” in a string, and replace “e” with “X”.
Program 14: WAP to reverse a string and store it in other string without using
strrev.
Topic 12: Pointer
Program 3: WAP to print address of a variable along with its value by using pointer.
Program 4: WAP to show accessing of array elements using pointers.
Program 5: WAP to show the use of pointers to compute the sum of all
elements stored in array.
Program 6: WAP to ask user to enter a string find length of string using pointer.
Program 7: WAP to ask user to create an array, enter values in it and add 2 in
each element of array using pointer and display the array.
Program 8: WAP to enter a string and convert all small letter to capital letters
using pointer.