Programming Examples

C program to computer the average of every third integer lying between 1 and 200


Write a ‘C’ program to computer the average of every third integer lying between 1 and 200?

Solution

#include <stdio.h>   
int main()
{
	int a,sum=0,count=0;
	float avg;
	for(a=1;a<=200;a=a+2)
	{
		sum=sum+a;
		count++;
	}
	avg=(float)sum/count;
	printf("Average of : %f",avg);
	return 0;
}
Output

Average of : 100.000000

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad