2009-05-08から1日間の記事一覧

構造体の初期化

struct _str{ int flag; unsigned char* ptr[4]; }str={0,NULL,NULL,NULL,NULL}; とすると、 odawara@looxp ~/prog> gcc -Wall test.c test.c:5: 警告: 初期化子のまわりのブレースを欠いています test.c:5: 警告: (near initialization for ‘str.ptr’)と言…