zoukankan
html css js c++ java
字符串操作2
1
//
递归反向打印字符串
2
void
reversePrint(
const
char
*
str)
3
{
4
if
(str ==
NULL)
5
return
;
6
if
(*str ==
'