现在,我们将看到该计划的实际执行情况 -
#include <stdio.h> int main() { char str[] = "Hello World"; printf("%s\n", str); return 0; }
该计划的输出应为 -
Hello World