由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - how to separate a long line to be two show lines?
相关主题
请教一个C++关于输入输出的问题谁给解释下这个比较弱的问题?
help on string parse一个简单的算法问题?
A thread questionint64_t printf
[转载] 简单的题都不敢做了.问一道C++的题目。 (转载)
little endian vs big endianQuestion on using ## in #define
GCC 居然允许变量长度的向量一道c
a question about CGIC/C++函数调用和栈内存
全局对象select的timeout怎么不work
相关话题的讨论汇总
话题: gif话题: resized话题: factor话题: lines话题: printf
进入Programming版参与讨论
1 (共1页)
h**o
发帖数: 548
1
the debug line in the C code is quite long:
printf("set original GIF to detailed with factor=%d because image is to be
resized\n",http->request->bmi.gifDecimateFactor);
I want to seperate it to be two lines:
printf("set original GIF to detailed with factor=%d
because image is to be resized\n",http->request->bmi.gifDecimateFactor);
what operator should I insert between 'factor=%d'and 'because'?
Thanks
a**a
发帖数: 416
2
printf("set original GIF to detailed with factor=%d"
"because image is to be resized\n",http->request->bmi.gifDecimateFactor);

【在 h**o 的大作中提到】
: the debug line in the C code is quite long:
: printf("set original GIF to detailed with factor=%d because image is to be
: resized\n",http->request->bmi.gifDecimateFactor);
: I want to seperate it to be two lines:
: printf("set original GIF to detailed with factor=%d
: because image is to be resized\n",http->request->bmi.gifDecimateFactor);
: what operator should I insert between 'factor=%d'and 'because'?
: Thanks

h**o
发帖数: 548
3
Thanks I am trying.

【在 a**a 的大作中提到】
: printf("set original GIF to detailed with factor=%d"
: "because image is to be resized\n",http->request->bmi.gifDecimateFactor);

1 (共1页)
进入Programming版参与讨论
相关主题
select的timeout怎么不worklittle endian vs big endian
一个关于Insight debugger的问题GCC 居然允许变量长度的向量
问一个关于copy constructor的菜鸟问题。。。。。 (转载)a question about CGI
这个是什么原因全局对象
请教一个C++关于输入输出的问题谁给解释下这个比较弱的问题?
help on string parse一个简单的算法问题?
A thread questionint64_t printf
[转载] 简单的题都不敢做了.问一道C++的题目。 (转载)
相关话题的讨论汇总
话题: gif话题: resized话题: factor话题: lines话题: printf