如何组合多个字符串。例如,
char item[32];
scanf("%s", item);
printf("Shopping list: %s\n", item); //I want to combine this string
char string_2[] = "To do list: Sleep\n"; // with this string
char hw[32];
scanf("%s", hw);
printf("Homework: %s\n", hw); // and this string
所以他们会像下面这样打印,
购物清单:(项目)
待办事项清单:睡觉
作业:(hw)
但是我不想像上面的代码那样单独给 printf 命令,而是结合字符串并在最后调用 printf /
我将如何做到这一点,因为我无法将这样的内容保存到单独的字符串中,char string1 = ("Shopping list: %s \n", item)