Hi ,
I have installed the sublime text and added Mingw in the path…
Though I can use Codeblocks with no problem , I can’t write c++ code in Sublime Text
Its showing:
/bin/bash: line 1: g++: command not found
If I use c++ Single File :
c:\mingw\include\wctype.h:87:20: fatal error: stddef.h: No such file or directory #include <stddef.h>
^
compilation terminated.
my code is:
`#include
using namespace std;
int main(){
cout << "Hello World!";
}`