学校でC言語の基礎学んだから見て #1

1以下、名無しにかわりましてVIPがお送りします:2025/03/18(火) 17:08:49.58 ID:DbdPNFS7

#include <stdio.h>
#include <stdlib.h>

int main() {

char* input = malloc(sizeof(char));
if (input == NULL){
perror("ERROR: input memory allocation failed.");
exit(EXIT_FAILURE);
}

int ch = 0;

int i = 0;

printf("Please give an integer: ");

while ((ch = getchar()) != EOF && ch != '\n'){
input = realloc(input, (size_t)(i+1) * sizeof(char));
if (input == NULL){
perror("ERROR: input memory allocation failed.");
exit(EXIT_FAILURE);
}
if (ch < 48 || ch > 57){
free(input);
fprintf(stderr, "ERROR: Please give a valid integer.\n");
exit(EXIT_FAILURE);
}
input[i] = ch;
i++;
}

input[i] = '\0';

printf("Given integer is: %s\n", input);

free(input);

return 0;
}
 


スパムを通報

このレスがスパム・荒らしである場合は以下のボタンをクリックして通報してください。
(同意できない意見などに反対票を投じる機能ではありません)
通報

このスレッドを全て表示


レスを書き込む