C Programming Questions and Answers – While Loops – 1 · #include <stdio.h> · int main() · { · int i = 0; · do { · i++; · printf("In while loop\n"); · } while (i < 3);; }.
確定! 回上一頁