mirror of
https://github.com/AxioDL/llvm.git
synced 2026-03-30 11:42:29 -07: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;
|
||
|
|
}
|