View on GitHub How to use do-while loop in C Language Do-while Loop On this page On this page Do-while Loop Output ❮ Previous Next ❯ Do-while Loop Program to use Do-While Loop in C Language #include <stdio.h> int main() { int i = 1; do { printf("%d\t", i); i = i + 1; } while (i <= 10); printf("\n"); return 0; } Output 1 2 3 4 5 6 7 8 9 10 ❮ Previous Next ❯