Posts by Ph4nton • 9 points
2 posts
-
0
votes1
answer57
viewsQ: How to get Thread Stack?
I’m trying to create a program to get the thread stack, like the image, someone has some way to get it?…
-
0
votes3
answers95
viewsA: How to search a string for X and replace it with a number and use it to calculate?
From what I understand you want to locate a number in a correct string?! You can use the find function of the string. int AcharValor(std::string srt) { if (srt.find('0') != std::string::npos) return…