#include <iostream>
using namespace std;
void print(int b[], int s);
int main()
{
int a[5] = {1,2,3,4,5};
print(a, 5);
}
void print(int b[] , int s){
for(int i = 0; i < s; i++){
cout << b[i] << endl;
}
}
It is likely that the Anti-Virus on the one computer is deleting the exe.
It is likely that the Anti-Virus on the one computer is deleting the exe.
you probably have not turned off your antivirus
It was working fine for the first month. I was using the same anti-virus back then and I don't have an internet connection at home so I'm pretty sure that it hasn't made any update. Also in my second computer I use the same antiviru s and program works fine in that tooNew Anti Virus work on heuristics and not on signature, so they don't have to work deterministic. The same anti virus on two different machines don't have to detect the same file if the previous history of the file is not the same. For example the file what does first A then B and then C on one pc 1 but only does B and C on pc 2 can trigger the anti virus on pc 1 but not on pc 2...
-------------- Build: Debug in beans (compiler: GNU GCC Compiler)---------------This messages tells you that you don't have any object files. This can have multiple reasons: No source files in the project, no source files enabled for this target, no write permission ecc....
Linking stage skipped (build target has no object files to link)
Nothing to be done (all items are up-to-date).
I am having this same issue. My virus protection is disabled so that isn't causing the issue for me. When i try to build, this is what i see under Build Log:
-------------- Build: Debug in beans (compiler: GNU GCC Compiler)---------------
Linking stage skipped (build target has no object files to link)
Nothing to be done (all items are up-to-date).
I am very new to C++ and code blocks so any help would be appreciated.