Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 17, 2017 17:39
Show Gist options
  • Save ThePratikSah/423220cf3496bef16d23af707a7efc91 to your computer and use it in GitHub Desktop.
Save ThePratikSah/423220cf3496bef16d23af707a7efc91 to your computer and use it in GitHub Desktop.
main() {
int i,n,sum=0;
printf("Enter the value of n:\n");
scanf("%d", &n);
while(i<=n) {
sum=sum+i;
++i;
}
printf("Sum=%d",sum);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment