Questions tagged as 'c++11'

2
answers

Problems when deploying the template to the TAD

In the exercise, ask to transform a non-generic TAD matriz , to a generic by template . In theory only you have to touch the header ( matriz.hpp ) and matriz.cpp . The project has two other files, prueba.cpp...
asked by 22.06.2017 / 20:05
1
answer

How to multiply a matrix by a vector

Good evening I am finishing a program for the faculty and I am missing a part of the code to multiply a matrix by a vector, in this case it would be the multiplication of the quantity vector [i] [j] * prices [j]. (In the code is an attempt at mu...
asked by 30.09.2018 / 06:17
1
answer

Problems when compiling in C ++

Hi, I'm just learning something from C ++ and I downloaded Jetbrain's CLION before installing the mingw following a video, the reason is that I was following the course and trying to compile or execute it throws me an error that I do not know ve...
asked by 17.12.2017 / 21:48
1
answer

Can you redefine an object of a class?

I have a Parent class that receives two mandatory parameters: the number of rows and columns. And I want to reuse an object and change the number of rows and columns, something like this: for(i=1; i<=10; i++){ Matriz M(i, i); //Hacer...
asked by 29.09.2017 / 22:08