C
1#include <stdio.h> 2 3 #define MAX_MSGSIZE 100 4 #define BUF_SIZE 10 5 #define BUF_LENGTH 100 6 7 char *create_cache(); 8 9 int main(int argc, char *argv[]) { 10 11 char *Cache[BUF_SIZE]; 12 Cache = create_cache(); 13 printf("address is: %s\n", Cache[0]); 14 15 return 0; 16 } 17 18 char *create_cache(){ 19 char *cache[BUF_SIZE]; 20 for (int size = 0; size < BUF_SIZE; ++size) { 21 char buffer[BUF_LENGTH] = "i"; 22 cache[size] = &buffer[0]; 23 } 24 return cache; 25 }
上記のコードをコンパイルしたところ、以下のようなエラーが出てしまいました。
CompileError
1./main_test.c: In function ‘main’: 2./main_test.c:16:11: error: assignment to expression with array type 3 Cache = create_cache(); 4 ^ 5./main_test.c: In function ‘create_cache’: 6./main_test.c:28:12: warning: return from incompatible pointer type [-Wincompatible-pointer-types] 7 return cache; 8 ^~~~~
ポインタ型関数の扱いに不慣れなのですが、どのように解決したらよいか
ご教授頂ければ幸いです。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。