pvjc24/cv3/program.c

14 lines
153 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:30:58 +00:00
2024-02-29 13:23:40 +00:00
return 0;
}