Integer sequence: Difference between revisions

Content added Content deleted
Line 42: Line 42:
uint32_t i = 0;
uint32_t i = 0;
while(true)
while(true)
{
std::cout << ++i << std::endl;
std::cout << ++i << std::endl;
}


return 0;
return 0;