In this repo i have to done all experiment of subject PPS of sem-1 GTU.
- Write a program to that performs as calculator ( addition, multiplication, division, subtraction).
- Write a program to find area of triangle(a=hb.5)
- Write a program to calculate simple interest (i = (prn)/100 )
- Write a C program to interchange two numbers.
- Write a C program to enter a distance in to kilometre and convert it in to meter, feet, inches and centimetre
- Write a program to compute Fahrenheit from centigrade (f=1.8*c +32)
- Write a C program to find out distance travelled by the equation d = ut + (at^2)/2
- Write a C program to find that the accepted number is Negative, or Positive or Zero.
- Write a program to read marks of a student from keyboard whether the student is pass or fail(using if else)
- Write a program to read three numbers from keyboard and find out maximum out of these three. (nested if else)
- Write a C program to check whether the entered character is capital, small letter, digit or any special character.
- Write a program to read marks from keyboard and your program should display equivalent grade according to following table(if else ladder) Marks Grade 100 - 80 Distinction 79 - 60 First Class 59 - 40 Second Class < 40 Fail
- Write a c program to prepare pay slip using following data. Da = 10% of basic, Hra = 7.50% of basic, Ma = 300, Pf = 12.50% of basic, Gross = basic + Da + Hra + Ma, Nt = Gross – Pf.
- Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday.
- Write a C program to find out the Maximum and Minimum number from given 10 numbers.
- Write a C program to input an integer number and check the last digit of number is even or odd.
- Write a C program to find factorial of a given number.
- Write a program to reverse a number.
- Write a program to generate first n number of Fibonacci series.
- Write a program to find out sum of first and last digit of a given number.
- Write a C program to find the sum and average of different numbers which are accepted by user as many as user wants.
- Write a program to calculate average and total of 5 students for 3 subjects (use nested for loops).
- Read five persons height and weight and count the number of person having height greater than 170 and weight less than 50.
- Write a program to check whether the given number is prime or not.
- Write a program to evaluate the series 1^2+2^2+3^2+……+n^2