mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-16 07:28:52 +00:00
Initial commit
This commit is contained in:
9
examples/simple_for.c
Normal file
9
examples/simple_for.c
Normal file
@@ -0,0 +1,9 @@
|
||||
int main()
|
||||
{
|
||||
int i;
|
||||
int sum = 0;
|
||||
for (i = 0; i < 11; ++i) {
|
||||
sum += i;
|
||||
}
|
||||
return sum;
|
||||
}
|
||||
Reference in New Issue
Block a user