• 2022-06-07
    The output of the following code is ____.
    count = 1; /* initialize count */ while (count <= 10) { printf("%d ",count); count++; /* increment count */ }
    A: 1 1 1 1 1 1 1 1 …
    B: 1 2 3 4 5 6 7 8 9
    C: 1 2 3 4 5 6 7 8 9 10
    D: 1 2 3 4 5 6 7 8 9 10 11
  • 举一反三