blob: ba9fa95d3b96103fcfc8b660d8a335189dd97111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include<stdio.h>
#include<string.h>
int main(){
char sentence[1000];
fgets(sentence, 1000, stdin);
for (int i = 0; i < strlen(sentence) - 1; i++){
printf("%d \0 ", (int)sentence[i]);
}
printf("\n");
}
|