Posts by Evandro Ferraz • 107 points
4 posts
-
2
votes3
answers1174
viewsQ: Conversion of variables type int to char*. C++
I have the following method that takes two int variables as parameter and I need to concatenate these two values into a char variable*, only for this to be possible it is necessary that these two…
-
2
votes2
answers207
viewsQ: Integer combination command. C++
Is there a command that allows the combination of two integers? I have a variable that counts 5 and one that is worth 6 for example, there is some command that makes it possible to play the…
c++asked Evandro Ferraz 107 -
3
votes3
answers1104
viewsQ: Change of vector size in a structure
I have the following structure: struct Implicantes{ int posicao; char binario[5]; bool dontcare; bool tick; struct Implicantes *Next; }; It is possible to change the vector size of char "binary" of…
-
3
votes0
answers1050
viewsQ: Device gives error and then restarts after trying to uninstall application
I’m having a bug with the application I created, the code is compiling normal and without any error or Warning, and the application is also working on mobile, but when I try to uninstall this…