#include <iostream> // macro definition #define LIMIT 5 int main() { for (int i = 0; i < LIMIT; i++) { std::cout << i << " "; } return 0; }