#include<stdio.h>
void main()
{
char*c;
c="我是一个学生!"; /*为c赋值*/
printf("%s\n",c);
printf("%s\n","她是我的老师!"); /*输出字符常量*/
}