我没有找到该程序的正确输出.它给出了运行时错误.
#include <stdio.h> int main() { int c = 5, no = 10; do { no /= c; } while(c--); printf ("%d\n", no); return 0; }
c runtime-error
c ×1
runtime-error ×1