While loop and sum integers : While Loop « Statement « C Tutorial






#include <stdio.h>

int main(void)
{
  long sum = 0L;
  int i = 1;    
  int count = 0;

  printf("\nEnter the number of integers you want to sum: ");
  scanf(" %d", &count);

  while(i <= count){
    sum += i++;
  }

  printf("Total of the first %d numbers is %ld\n", count, sum);
  return 0;
}
Enter the number of integers you want to sum: 1
     Total of the first 1 numbers is 1








6.7.While Loop
6.7.1.The while loop
6.7.2.Between a while loop and a for loop
6.7.3.Put function into while loop condition statement
6.7.4.While loop and sum integers
6.7.5.while loop nested in a for loop