Sublime Forum

About C++ sublime

#1

i need some help, i don t know why my program isn t compiling…Capture .

0 Likes

#2

Seems like it compiled, what’s the issue?

0 Likes

#3

@bschaaf bscahaaf bcs my acc was put on hold, i have to reply from this acc. I said that i wanna see my compiling
result , like i wanna see that ‘a’ typed in the console…

0 Likes

#4

and i have “save all on build”

0 Likes

#5

That’s execution result. Not compilation result.

0 Likes

#6

@jfcherng yes, you re right, i tought i was missunderstood, i just wanna know how to see the result.

0 Likes

#7

Considering that I watched other videos on yt, when it is compiling, the answer should have appeared at the bottom as it is in the Visual Studio console, do you understand?

0 Likes

#8

Build systems can do anything; compile, run, compile and then run. It would appear that the build that you’re using is only compiling and nothing else. If you want it to run your program too, you either need to adjust your build to also run it, or run it externally.

If you’re using the built in build system for C/C++, then you want to use the Run variant, which compiles your code and then runs it.

1 Like