反斜杠字符(/
)是printf()
函数中的特殊字符。要显示反斜杠,必须使用此转义序列。
#include <stdio.h>
int main()
{
printf("c://cygwin//bin must be in your system path");
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266466.html
反斜杠字符(/
)是printf()
函数中的特殊字符。要显示反斜杠,必须使用此转义序列。
#include <stdio.h>
int main()
{
printf("c://cygwin//bin must be in your system path");
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266466.html