19 lines
251 B
C
19 lines
251 B
C
#include <stdio.h>
|
|
|
|
#define SIZE 10
|
|
|
|
int main() {
|
|
char numbs[SIZE] = {0} ;
|
|
int x = 0;
|
|
int input = 0;
|
|
int count = 0;
|
|
|
|
while(input != '\n'){
|
|
numbs[count] = input;
|
|
printf("%d",numbs[count]);
|
|
count++;
|
|
}
|
|
|
|
return 0;
|
|
}
|