#include #include //What is the output? int main(int argc, char* argv[]) { int count=0; do { count++; printf("%d\n", count); }while(count <5); system("pause"); }