Here is the list, for interest sake does it matter which windows are you using?
#include <iostream>
using namespace std;
int main()
{cout << "Hello world"; return 0; }
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c|1|error: iostream: No such file or directory|
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c|2|error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'|
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c||In function 'main':|
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c|4|error: 'cout' undeclared (first use in this function)|
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c|4|error: (Each undeclared identifier is reported only once|
C:\Program Files (x86)\UNISA\COS1511\Activity 1a.ii\Hello world1.c|4|error: for each function it appears in.)|
||=== Build finished: 5 errors, 0 warnings ===|
If you want to compile the code as C++ the extension of the file must be a C++ extension. For example, either .cpp or .cc - just putting .c will cause the compiler to interpret the file as C and not C++