2017-05-23 23 views
-1

で2次元のChar私はそれが右の私には見えるC構造体

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

enum { HIGHT=14, WIDTH=147, IMAGES=24 }; 

typedef struct{ 
    char *frame[HIGHT][WIDTH]; 
    int fps; 
} frame_stack_t; 

void out(frame_stack_t *frame_stack[IMAGES]); 

int main(){ 
    frame_stack_t *frame_stack[IMAGES]; 

    for (int i=0; i<IMAGES; i++){ 
     for (int j=0; j<HIGHT; j++){ 
      strcpy(frame_stack[i]->frame[j], "some text"); 
     } 
    } 

    out(frame_stack); 
} 

void out(frame_stack_t *frame_stack[IMAGES]){ 
    for (int i=0; i<IMAGES; i++){ 
     for (int j=0; j<HIGHT; j++){ 
      printf("%s",frame_stack[i]->frame[j]); 
     } 
    } 
} 

、2dim char型の構造体メンバへの入力を読み込むしようとしているが、私は次の出力recive:

test_struct.c: In function ‘main’: 
test_struct.c:19:25: warning: passing argument 2 of ‘strcpy’ from incompatible pointer type [-Wincompatible-pointer-types] 
    strcpy("some text", frame_stack[i]->frame[j]); 
         ^
In file included from test_struct.c:3:0: 
/usr/include/string.h:125:14: note: expected ‘const char * restrict’ but argument is of type ‘char **’ 
extern char *strcpy (char *__restrict __dest, const char *__restrict __src) 
      ^
test_struct.c: In function ‘out’: 
test_struct.c:29:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char **’ [-Wformat=] 
    printf("%s",frame_stack[i]->frame[j]); 
     ^
Speicherzugriffsfehler 

をstrcpyが失敗したことをgdbに伝えて

Program received signal SIGSEGV, Segmentation fault. 
__strcpy_sse2_unaligned() at ../sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S:546 
546 ../sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Datei oder Verzeichnis nicht gefunden. 

誰かが私に何か間違いを教えてもらえますか?

+1

あなたはcharポインタ配列の配列を持っています。配列を索引付けすると、charポインタ配列ではなくcharポインタ配列を得ることができます。 –

+1

質問をする前に少なくともマニュアルを読んでください。例えば、あなたの 'strcpy()'引数が間違った方法である場合は、 –

+0

thxを混ぜ直して、私は新しいエラーを投稿しました。 – Bubblepop

答えて

0

問題のCコードには多くの問題があります。このような公開フォーラムに質問を投稿する前に、読んで練習してください。

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

enum { HIGHT=14, IMAGES=24, WIDTH=147 }; 

typedef struct{ 
char frame[HIGHT][WIDTH]; 
int fps; 
} frame_stack_t; 

void out(frame_stack_t *frame_stack); 

int main() 
{ 
frame_stack_t frame_stack[IMAGES]; 
int i, j; 

for (i=0; i<IMAGES; i++) 
{ 
    for (j=0; j<HIGHT; j++) 
    { 
     strcpy(frame_stack[i].frame[j], "some text\n"); 
    } 
} 

out(frame_stack); 
} 

void out(frame_stack_t frame_stack[]) 
{ 
int i,j; 
for (i=0; i<IMAGES; i++) 
{ 
    for (j=0; j<HIGHT; j++) 
    { 
     printf("%s",frame_stack[i].frame[j]); 
    } 
} 
} 
+0

どのような問題がありますか?私はコードが正常に実行されている投稿した問題の横に記載されています。 – Bubblepop