SA-MP Forums Archive
New to C++ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: New to C++ (/showthread.php?tid=470514)



New to C++ - Kendo - 18.10.2013

i started learning C++ , I downloaded the tutorial.pdf to move step by step , but when i compile it say
Код:
Please Specify the name of the executable file to be used for the debug session 

Executable File Name : 

URL were the project can accessed (ATL Server only) :
so as i'm a new noob in C++ i just made
pawn Код:
// my first program in C++

#include <iostream>
using namespace std;

int main ()
{
      cout << "Hello World! "; //Cout is same as Print
      return 0;
}
I dunno what to write at
Код:
Executable File Name : 

URL were the project can accessed (ATL Server only) :



Re: New to C++ - gtakillerIV - 18.10.2013

What program are you using ?


Re: New to C++ - Kendo - 18.10.2013

Microsoft Visual C++ 2008


Re: New to C++ - gtakillerIV - 18.10.2013

Are you sure that in the project wizard you chose a console application not a .dll ?


Re: New to C++ - Kendo - 18.10.2013

Thanks didn't know that i must choose console application .