The Artima Developer Community
Sponsored Link

Java Buzz Forum
C program to find sum of n numbers using for loop

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
instanceof java

Posts: 576
Nickname: instanceof
Registered: Jan, 2015

instanceof java is a java related one.
C program to find sum of n numbers using for loop Posted: May 14, 2017 2:53 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by instanceof java.
Original Post: C program to find sum of n numbers using for loop
Feed Title: Instance Of Java
Feed URL: http://feeds.feedburner.com/blogspot/TXghwE
Feed Description: Instance of Java. A place where you can learn java in simple way each and every topic covered with many points and sample programs.
Latest Java Buzz Posts
Latest Java Buzz Posts by instanceof java
Latest Posts From Instance Of Java

Advertisement
  • C program to find sum of n numbers using function
  • This is about to get sum of all natural numbers in C using for loop
  • For example 4: 1+2+3+4=11
  • Let us see an example program to get  sum of natural numbers using while loop.


Program #1 :  Write a C program to get sum of all natural numbers up to n using for loop

  1. // www. instanceofjava.com all rights reserved
  2.  #include<stdio.h> 
  3. #include<math.h>
  4.  
  5. int main()
  6. {
  7.     int n, i, sum = 0;
  8.     
  9.     printf("Enter a positive integer: ");
  10.     scanf("%d",&n);
  11.  
  12.     for(i=1; i <= n; ++i)
  13.     {
  14.         sum += i;   // sum = sum+i;
  15.     }
  16.  
  17.     printf("Sum = %d",sum);
  18.  
  19.    getch();
  20. }
 Output:


sum of all natural numbers in c

 
  

Read: C program to find sum of n numbers using for loop

Topic: C program to reverse a number using while loop and for loop Previous Topic   Next Topic Topic: Difference between var, val, and def in Scala

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use