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:25:59 +00:00
|
|
|
printf('2');
|
2024-02-29 13:23:40 +00:00
|
|
|
numbs[count] = input;
|
|
|
|
printf("%d",numbs[count]);
|
|
|
|
count++;
|
|
|
|
}
|
2024-02-29 13:25:59 +00:00
|
|
|
printf('3');
|
2024-02-29 13:23:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|