Sportica   Sportica
摘要: #include <stdio.h>typedef struct shutter //第一个结构体定义{ int min; int max;}shutter_t;typedef struct image_s //第二个结构体定义{ int hue; int sharpness; shutter_t judge; //把第一个结构体里的元素放到第二个结构体里}image_t;int main(){ image_t image; image.hue=5; image.sharpnes... 阅读全文
posted @ 2011-12-12 13:47 qingjoin 阅读(1160) 评论(0) 推荐(0)
  Sportica