#include #include // Print the same output using three different loops. int main(int argc, char* argv[]) { int count; printf("------FOR------\n"); for(count=0; count <5; count++) printf("%d\n", count); printf("\n\n------WHILE------\n"); count=0; while(count<5) { printf("%d\n", count); count++; } printf("\n\n------DO------\n"); count=0; do { printf("%d\n", count); count++; }while(count<5); system("pause"); }