[原创]编了一个结构体的程序 有错误 求助
编了一个结构体的程序有错误
#include<iostream.h>
#include<iomanip.h>
struct student
{
int num;
char name[10];
char sex;
int age;
}stu;
void main()
{
stu.num=01111;
stu.name="lin lin";
stu.sex='g';
stu.age=20;
cout<<<<setw(7)<<stu.num<<setw(20)<<stu.name<<setw(3)<<stu.sex<<setw(3)<<stu.age;
}
但错误是error C2440: '=' : cannot convert from 'char [8]' to 'char [20]'
There is no context in which this conversion is possible
怎样改?