Skip to content

Instantly share code, notes, and snippets.

@cyc1am3n
Forked from hanjae-jea/sample2.cpp
Last active August 29, 2015 14:17
Show Gist options
  • Save cyc1am3n/b30064abe07cb475de34 to your computer and use it in GitHub Desktop.
Save cyc1am3n/b30064abe07cb475de34 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char* argv[])
{
int sum = 0;
for( int i = 1 ; i <= 100 ; i ++ ){
sum = sum + i;
}
printf("1 to 100 sum = %d\n");
}
#include <stdio.h>
int main(int argc, char* argv[])
{
printf("hello world!");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment