推薦図書/必読書のためのスレッド in ゲ製作技術 4
■ このスレッドは過去ログ倉庫に格納されています
0723暴走サンプル
2009/08/15(土) 12:35:41ID:bniN4FJh#include <stdio.h>
struct A {
int i;
};
extern struct A test();
int main() {
struct A a = test();
printf("%d\n", a.i);
return 0;
}
------ test.c --------
struct A {
int i;
int j;
};
struct A test() {
struct A a;
a.i = 0;
a.j = 1;
return a;
}
■ このスレッドは過去ログ倉庫に格納されています