我需要通过使用指针输入字符串来用“-”(破折号)替换空格。
输入应如下所示:
天是蓝的
输出 :
天是蓝的
我在编译编码和开始工作时遇到问题。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char result;
int main()
{
char string[100], *space;
{
printf("Enter a string here: \n"); //Enter a string in command prompt
gets(string); //scans it and places it into a string
space = string;
printf("%s\n", space);
result = space.Replace(" ", "-");
}
getchar();
}