You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
388 B
27 lines
388 B
3 years ago
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
3 years ago
|
#include "001-simple-inc.c"
|
||
3 years ago
|
|
||
|
int main()
|
||
|
{
|
||
|
int i;
|
||
|
int arr[10];
|
||
|
|
||
|
for(i = 0;i < 10; ++i) {
|
||
|
arr[i] = i * i * i / 10;
|
||
|
}
|
||
|
|
||
|
int pipa = 0;
|
||
|
int boba = 1;
|
||
|
int peppa = pipa / boba + 2 * (boba / 2) - 1
|
||
|
+ pipa * pipa / boba;
|
||
|
|
||
|
foo(3);
|
||
|
|
||
3 years ago
|
pipa += 4;
|
||
|
boba = foo(2) - foo(1);
|
||
|
|
||
3 years ago
|
return 0;
|
||
|
}
|