Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96114
License: OTHER
1
/* Example code for Think OS.
2
3
Copyright 2014 Allen Downey
4
License: GNU GPLv3
5
6
*/
7
8
#include <stdio.h>
9
10
int main()
11
{
12
int i;
13
float array[100];
14
15
for (i=0; i<100; i++) {
16
array[i] = i;
17
}
18
return 0;
19
}
20
21