C program to convert decimal number to binary number

Here you will get C program to print first n natural numbers and their sum.

Program

#include<stdio.h>
 
int main()
{
	int n,i,sum=0;
	printf("Enter the value of n:");
	scanf("%d",&n);
	
	for(i=1;i<=n;++i)
	{
		printf("\n%d",i);
		sum+=i;
	}
	
	printf("\n\nSum of first n natural numbers is:%d",sum);
 
	return 0;
}

Output

Enter the value of n:7

1
2
3
4
5
6
7

Sum of first n natural numbers is:28

Leave a Comment

error: Alert: Content is protected!!