Q : Write and explain the action of WHILE statement. Develop a program in ‘C’ language to compute the average of every third integer number lying between 1 and 100. Include appropriate documentation.
Solution :
Read While loop
Program :
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;