这种类型的循环如何工作以及为什么要打印x=1;相反x=3?
x=1
x=3
#include <stdio.h> #include <stdlib.h> int main() { char x = 2; for (; x++;); printf("x=%d", x); }
c
c ×1