This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C11/ex2.c

16 lines
218 B
C

#include <stdio.h>
#define ARRAY_LEN 90
int main() {
int i;
float arr[ARRAY_LEN];
for (i = 0; i < ARRAY_LEN; i++) {
arr[i] = (float)i;
}
for (i = 0; i < ARRAY_LEN; i++) {
printf("%d %f\n", i, arr[i]);
}
}