#include #include "subFunc.h" int main() { std::cout << "hello world" << std::endl; subFunc_hello(); // Debuggable version - runs only 3 times for (int i = 0; i < 3; i++) { std::cout << "hello world iteration " << i + 1 << std::endl; } std::cout << "Program completed successfully with incremental build!" << std::endl; return 0; }