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