怎么用从键盘上输入字符串存储到指针中?
发布网友
发布时间:2022-04-29 10:37
我来回答
共4个回答
热心网友
时间:2022-06-26 07:45
表达不正确。指针只能存地址,不能存储字符串。表达应该改为:怎么用从键盘上输入字符串存储到指针所指的单元中?
热心网友
时间:2022-06-26 07:45
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#define SIZE 100
int main()
{
char* ptr=(char*)malloc(SIZE);
scanf("%s",ptr);
cout<<ptr<<endl;
getch();//观察结果
}
热心网友
时间:2022-06-26 07:46
char ch[225];
char *p=ch;
gets(p);
包含头文件#include"string.h"
热心网友
时间:2022-06-26 07:47
void main(){
char str[80],*p=str;
printf("Enter a string:");
gets(str);
printf("\n");
puts(p);
}