pvjc24/cv3/program.c
2024-03-04 14:02:52 +01:00

24 lines
356 B
C

#include <stdio.h>
#define SIZE 10
int main() {
char coefs[SIZE];
int x = 0;
int input;
int count = 0;
while (count < SIZE && scanf("%d", &input) == 1) {
coefs[count] = input;
count++;
}
printf("Coefficients: ");
for (int i = 0; i < count; i++) {
printf("%d ", coefs[i]);
}
return 0;
}