Please Disable Your Ad Blocker if it is Enabled!
A large part of our income is from ads. Please disable your adblocker to keep this site free for everyone.
C++ program to find the average of a list of numbers entered through the keyboard
#include<iostream.h> #include<conio.h> void main() { clrscr(); //to clear the screen int i,n,x,sum=0; cout<<“How many...