int main(int argc, char* argv[])
{
while(1)
{
cout<<"123";
}
return 0;
}
I wrote this small program which would print "123" and then go in an infinite loop. But it does not print anything on the screen. What is the reason for this?