Created
July 24, 2020 09:00
-
-
Save iiwwnnaa/ddedb64eea4916297f267897cba526d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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