The word "delayed" didnt really exactly describe what my situation bumped up with. I was starting practicing with C++, and using Terminal along with Code-runnder extension as the compiler. The beginning program was just that simple:
#include <iostream>
using namespace std;
int main()
{
printf("hello");
return 0;
}
The terminal outputs the string "hello" as expected. However, when I decided to tweak the string (ex like "hellloo" or something like that). It took me 2 to 3 times to rerun/compile the program to give out the expected output. It means that whenever I apply some change in my code, it may take times recompiling to adopt that change.
Does anyone know how to fix this? Thank you very much in advance.