c++ - CodeLite - Console runs but code is not working -
I have just installed CodeLite 6.0 in two of my PCs, although I get the same problem in these two computers: I I am able to create and run the project, but when I see that the console starts:
This is my code:
#include & lt; Stdio.h & gt; Int main (int argc, char ** argv) {printf ("hello world"); Return 0; }
And if I try to add some crazy instructions that are not actually present, then the console will still not appear with errors and the project will not even be created with any errors I for example, using the following code:
#include & lt; Stdio.h & gt; Int main (int argc, char ** argv) {printf ("hello world"); Notrealcode & lt; & Lt; "Oh"; Return 0; }
and cout & lt; & Lt; "Hello World"
is not working either.
I'm sure you have not installed a compiler, knowing the way to select and add compiler Check out this tutorial for:
Comments
Post a Comment