Threat on my Antivirus

I am new at C++ and when i start program it shows up a threat on my AVG Antivirus.
Please, any help will be usefull. And thanks.

I don't know if this is usefull. If it is please, let me know. Here it is:
1
2
3
4
5
6
7
8
9
10
11
12
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    cout << "Hello World /n";

    system("PAUSE");
    return 0;
}
Don't use system().
But then it just opens and closes in the same time.
sry about reportation
Create an exception in your security settings in AVG to exclude your .exe file from scans
will fix it 100%

Last edited on
Topic archived. No new replies allowed.