你加一个
#include<iostream>试试
不过我建议用
malloc
给它申请空间
那时建议加个
#include<stdlib.h>
惟有学习不断的学习!
你的能通过编译吗,getch()包含在头文件 conio.h中
/********************************************/
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
int main()
{
char *s;
s=(char*)malloc(10);//动态分配10个字节的内存空间
scanf("%s",s);
printf("%s",s);
free(s);//释放内存
getch();
return 0;
}
[此贴子已经被作者于2007-8-24 13:59:44编辑过]