Posts by Reinaldo Filho • 43 points
2 posts
-
2
votes2
answers43
viewsA: Program stops reading before the for and "hangs" during the run (C)
In the second argument of for the variable vezes should be expressed in: vezes<n_termos or vezes <= n_termos-1, because that is the stopping criterion when you increase the vezes in the last…
canswered Reinaldo Filho 43 -
2
votes3
answers227
viewsQ: Add a string before a given word using Regex
I’m reading a file with a C code and turning it into another. I would like to replace the name of a variable that comes before or after an operation character by replacing it with "x" +…