week1602

/* Note:Your choice is C IDE */
#include "stdio.h"
struct stu_t
 {  
	char *name;
	int age;
	};
main()
{	struct stu_t cg;
	cg.name="hello world";
	cg.age=28;
		
    
}

你可能感兴趣的:(week1602)