Posts by Luis Gustavo • 3 points
2 posts
-
0
votes2
answers69
viewsA: For loop build error
Come on Nate, about the reference mistake: 'i' was not declared in this scope for(i = 0; i <= qt; i++){ ...} What was missing was to put even the type of variable i, because in this context it…
-
0
votes1
answer129
viewsQ: Object created within conditional If generates c++ build error
I’m having trouble compiling a C++ program in IDE Code::Blocks. What I’m trying to do is access an object that was instantiated within an If parole. I will put down the codes of the main program and…