Q : Write a ‘C’ program to compute the average of every third integer lying between 1 and 200? Include appropriate documentation?
Solution :
Solution :
#include<stdio.h>
void main()
{
int i,sum,avg;
for(i=1,sum=0;i<=200;i=i+3)