14 lines
153 B
C
14 lines
153 B
C
#include <stdio.h>
|
|
|
|
#define SIZE 10
|
|
|
|
int main() {
|
|
char numbs[SIZE] = {0} ;
|
|
int x = 0;
|
|
int input = 0;
|
|
int count = 0;
|
|
|
|
|
|
return 0;
|
|
}
|