week1603

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


 
 

你可能感兴趣的:(week1603)