Posts by Leandro Max • 21 points
4 posts
-
0
votes1
answer228
viewsA: Problems with ã and õ in C++
Boy, I don’t know if it’ll work for you but I’ve had similar problems, but mine was easy to solve, even using setlocale didn’t print properly, then later I discovered that in the sublime that is the…
-
0
votes2
answers61
viewsA: How to print build and link commands in Cmake?
I’m not sure I understand the question, but if you want to print a message like "Generating Objects" or "linking libraries" just put it like this after each rule all: dependencia1 dependencia2 ....…
-
1
votes2
answers579
viewsA: How to pass variable normally by value through reference?
Most people who program in c++ have passed through C before, but c++ has some particularities, and one of them is the reference passage. in the C code in order to change the value of the original…
c++answered Leandro Max 21 -
1
votes1
answer319
viewsQ: How to compile c++ with SFML library within the project itself
Hello people who like to program. I have a problem that so far searching on the father of donkeys (Google) I could not solve. I’m doing a little game as part of the evaluation of the programming…