新手程序分析求助
po主没写过程序分析,有无懂哥教一下程序分析该怎么写,就是这个倒序输出的。{:10_266:} {:10_254:} 额,程序在哪? 倒序输出是指这样吗?#include <stdio.h>int main()
{
char arr = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};
for(int i = 8; i >= 0; i--) printf("%c ", arr);
return 0;
} h g f e d c b a
页:
[1]