for循环和字符输出,以下程序执行什么操作?

#include <stdio.h>

int main(void)
{
    int ctr;

    for( ctr = 65; ctr < 91; ctr++ )
        printf(%c, ctr );

    return 0;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...