mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
15 lines
197 B
C
15 lines
197 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main (int argc, char** argv) {
|
||
|
int a[25];
|
||
|
|
||
|
for (i=0; i < 25; i++) {
|
||
|
a[i] = 24-i;
|
||
|
}
|
||
|
|
||
|
for (i=0; i < 25; i++)
|
||
|
printf("a[%d] = %d\n", i, a[i]);
|
||
|
|
||
|
return 0;
|
||
|
}
|