#include<iostream> using namespace std; int main(void) { char *a = "abc", *b = "bcd"; printf("%s %s %s",a,b); return 0; }
以上代码段,编译不会报错,会有warning, 输出abc bcd null....
时间: 2024-11-06 17:33:25
#include<iostream> using namespace std; int main(void) { char *a = "abc", *b = "bcd"; printf("%s %s %s",a,b); return 0; }
以上代码段,编译不会报错,会有warning, 输出abc bcd null....