C 语言字符串打印程序



实施

现在,我们将看到该程序的实际实现 -

#include <stdio.h>

int main() {
   char str[] = "Hello World";

   printf("%s\n", str);

   return 0;
}

输出

该程序的输出应为 -

Hello World
string_programs_in_c.htm
广告