pvjc24/cv3/program.c

19 lines
251 B
C
Raw Normal View History

2024-02-29 13:23:40 +00:00
#include <stdio.h>
#define SIZE 10
int main() {
char numbs[SIZE] = {0} ;
int x = 0;
int input = 0;
int count = 0;
2024-02-29 13:24:36 +00:00
while(input != NULL){
2024-02-29 13:23:40 +00:00
numbs[count] = input;
printf("%d",numbs[count]);
count++;
}
return 0;
}