前提・実現したいこと
現在C言語を学習中のものです。
きちんと思い通りの出力結果が得られているのですが、コンパイルをした際に警告が表示されます。
この警告を表示させない・改善をするためには、どのようにしたら良いのでしょうか?
よろしくお願いいたします。
発生している問題・エラーメッセージ
a.c:22:21: warning: incompatible pointer types passing 'int *' to parameter of type 'char *' [-Wincompatible-pointer-types] my_array = fgets(buffer, 100, stdin); ^~~~~~ /usr/include/stdio.h:149:30: note: passing argument to parameter here char *fgets(char * __restrict, int, FILE *); ^ a.c:22:13: warning: incompatible pointer types assigning to 'int *' from 'char *' [-Wincompatible-pointer-types] my_array = fgets(buffer, 100, stdin); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ a.c:42:20: warning: format specifies type 'char *' but the argument has type 'int *' [-Wformat] printf("%s", *linep); ~~ ^~~~~~ 3 warnings generated.
該当のソースコード
C
1#include <stdio.h> 2#include <stdlib.h> 3 4int main(void) 5{ 6 int linesnumber,lin; 7 scanf("%d", &linesnumber); 8 lin = linesnumber + 1; 9 10 int *lines[lin]; 11 int **linep = lines; 12 int **endp = lines + lin; 13 while (linep < endp) { 14 int *buffer; 15 int *my_array; 16 17 if(!(buffer =(int *)malloc(sizeof(int)*100))) 18 printf("Not enough memory!\n") 19 ,exit(1); 20 21 my_array = fgets(buffer, 100, stdin); 22 23 if(!my_array) 24 { 25 free(buffer); 26 } 27 *linep = my_array; 28 29 30 if (*linep) { // 31 if (!**linep) 32 printf("Error in getline1: Pointer to totally empty line!\n"), exit(1); 33 linep++; //linepのアドレスを一つずらして 34 } 35 else 36 break; 37 } 38 39 while (linep > lines) { 40 linep--; //順に 41 printf("%s", *linep); 42 free(*linep); 43 } 44 45 return 0; 46} 47
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。