我想知道这个程序是如何执行的并且不会抛出任何错误。
void main( )
{
clrscr();
int i ;
for ( i = 1 ; i <= 5 ; printf ( "\n%c", 65 ) ) ;
i++ ;
getch();
}
循环继续打印 A 永远。for循环的格式是
for(initialize value; test counter; increment value)
{
do this;
and this;
and this;
}
我的问题是 printf("\n %c", 65) 如何增加值?