Skip to content

Instantly share code, notes, and snippets.

@songritk
Created July 23, 2019 15:52
Show Gist options
  • Save songritk/2a2b32f2bc708d4474183f0bf9ca8f95 to your computer and use it in GitHub Desktop.
Save songritk/2a2b32f2bc708d4474183f0bf9ca8f95 to your computer and use it in GitHub Desktop.
tutor-sum.c
#include<stdio.h>
int main ()
{
int N=5;
int i=1;
int sum=0;
while( ___ <= ___ ){
sum=sum+___ ;
___++;
}
printf("Arithmetic Sum = %d\n",sum);
return(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment