Skip to content

Instantly share code, notes, and snippets.

@iiwwnnaa
Created July 24, 2020 09:00
Show Gist options
  • Save iiwwnnaa/ddedb64eea4916297f267897cba526d4 to your computer and use it in GitHub Desktop.
Save iiwwnnaa/ddedb64eea4916297f267897cba526d4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int s = 0;
for (int i = 1; i <= 100; i++) {
s += i;
}
printf("%d", s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment