c progrming

a C program that prints an increasing series of any character.

code:- #include <stdio.h> int main() {     int n, i, j;     char p;     printf("Enter the character: ");     scanf(" %c",…

write a program to make celsius to fahrenheit and fahrenheit to celsius converter || Using if else ||.

write a program to make celsius to fahrenheit and fahrenheit to celsius converter.. #include<stdio.h> int main(){     char unit;     float c,…

simple calculator using switch case.

....simple calculator using switch case... //simple calculator using switch case #include<stdio.h> int main() { float a,b,result; char op; pr…

c program to enter the length and width of a rectangle and calculate the area and perimeter.

Write a program to enter the length and width of a rectangle and calculate the area and perimeter. #include<stdio.h> int main() {     float l…