- 593 名前:デフォルトの名無しさん mailto:sage [2009/11/29(日) 19:56:42 ]
- #include <stdio.h>
struct _Perception { struct Point{ int x; int y; }; Point trackingPoint0; Point trackingPoint1; Point trackingPoint2; }; _Perception Perception; int main() { printf("%d", Perception.trackingPoint0.x); /* ...*/ return 0; }
|

|