#include #include // What is the output? int main(int argc, char* argv[]) { int count=1; while(count <=5); // note the ';' This causes an infinite loop { printf("%d\n", count); count*=2; } system("pause"); }