Posts by JOsinaldo Wifi • 21 points
3 posts
-
0
votes1
answer115
viewsQ: What is this operator **?
What is this operator **, and what is it for? Every time I come across a piece of code in C++ with this operator. And if it is related to *, what’s the difference?
-
1
votes1
answer51
viewsA: Error with C array - Norwegian
You cannot explicitly set a fixed size for a dynamic array. It is an array rule for both C and C++ Ex of errors: int array[]; //eu sou dinâmico main(){ array[4] = {1,2,3,4}; //definindo tamanho para…
-
1
votes1
answer288
viewsQ: I have a question about inherited default builders
I am doubtful when trying to improve a POO exercise here.. (-) = without I have the PAI class with two constructors (one is default). In the FILHO class I have two more constructors (no-default). In…