c語言:輸出(Welcome??)和(Welcome\?\?)
程序1:
#include<stdio.h>
int main()
{
printf("(Welcome??)");
return 0;
}
結果:
(Welcome]
Press any key to continue
錯誤在於應該使用\?,防止被解析成三字母詞,正確程序如下:
程序2:
#include<stdio.h>
int main()
{
printf("(Welcome\?\?)");
return 0;
}
結果:
(Welcome??)
Press any key to continue
程序3
#include<stdio.h>
int main()
{
printf("(Welcome\\?\\?)");
return 0;
}
結果:
(Welcome\?\?)