mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
14 lines
201 B
C
14 lines
201 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
int i, d=0;
|
||
|
for (i=0; i < 10; ++i)
|
||
|
d += i;
|
||
|
|
||
|
printf("separator!\n");
|
||
|
|
||
|
for (i=0; i < 4; ++i)
|
||
|
printf("[%d]\n", d+i);
|
||
|
return 0;
|
||
|
}
|