Write a program to delete a character in given string

C Program to Remove All Occurrences of a Character in a StringWrite a C Program to Remove All Occurrences of a Character in a String with example.This program allows...
August 31, 2021

Write a C program to calculate the average, geometric and harmonic mean of n elements in a array

The c program calculates geometric mean, average mean and harmonic mean using their respective formulas. It simply applies these formula on the given input to calculate and print...
August 27, 2021

Write a program to find maximum element from 1-Dimensional array

C program to find the largest number in an arrayHow to find max value in an array?Algorithm to get max value: we assume that it's present at the...
August 24, 2021

Write a C program to find out which number is even or odd from list of 10 number using array

Write a C program to find out which number is even or odd from list of 10 number using arrayC program to count the total number of even...
August 22, 2021

Write a C program to read and store the roll no and marks of 20 students using array

Write a C program to read and store the roll no and marks of 20 students using arrayDefine a structure, student, to store the following data about a...
August 21, 2021

Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9!

Write a C program to evaluate the series sum=1-x+x^2/2!-x^3/3!+x^4/4!......-x^9/9! Program:#include<stdio.h>#include<conio.h>int main(){    int n, i, j, fact=1; float sum=0;    printf("Enter value of n : ");    scanf("%d",&n);    ...
August 20, 2021

Write a C program to find 1+1/2!+1/3!+1/4!+.....+1/n!

Lets write a C program to add first seven terms of the following series 1+1/2!+1/3!+1/4!+.....+1/n!We’ve also written the C program to ask the user to enter the number of...
August 19, 2021