Try this one:
//Can we print all integers from 1 to 30??/ int x = 0; while (x < 30) { _tprintf(_T("X = %d\n"), ++x); }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)