Posts by Guilherme Melo • 5 points
4 posts
-
0
votes1
answer50
viewsQ: Vector issues using intel’s C++ compiler in Visual Studio
The code below is the result of a work I am developing, basically it is the multiplication of a square matrix, however, the results I had parallelizing the application with the Openmp API were…
-
-2
votes1
answer45
viewsQ: How do I display attributes of an object stored in an array?
I’m doing a job that consists of fictitious real estate. In this program there is a class called principal where it receives Immovel (Class) and stores the immovables in a vector, a class…
-
-1
votes2
answers868
viewsA: C++ Visual Studio
try to replace the operator and for &&. Example: if (custo > 20000 && custo <= 40000) { .... }
-
0
votes1
answer240
viewsQ: 'function name_name': identifier not found
void inserePoli1(poli **topo1, int val, int expo) { polinomio1 *novo; char cmd; novo = new poli; novo->valor = val; novo->expoente = expo; if (*topo1 == NULL) { novo->prox = NULL; *topo1 =…