Rumah > Soal Jawab > teks badan
如题所示,为什么字符串加了const
就会报错,去掉const
就能过?
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
const char letter[] = "`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./";
cout<<strlen(letter)<<endl;
return 0;
}
ringa_lee2017-04-17 15:09:58
把错误信息贴出来看看,在Mac和Centos下执行下面命令编译后执行是正常的
g++ test.cpp -o test
./test