摘要: 无聊写的程序,验证些语法知识#include <stdio.h>struct main{ #define MAX_SIZE 19900 int count ;};struct super{ #define MAX_SIZE 100 int count; char ch;};int main(){ struct main hunter; hunter.count = MAX_SIZE; struct super main; main.count = MAX_SIZE; printf("Hello World %d \t %d\n",hunter.count,mai 阅读全文
posted @ 2011-05-31 18:12 westfly 阅读(1091) 评论(0) 推荐(0) 编辑