Posts by Raphael Sauer • 158 points
8 posts
-
1
votes1
answer624
viewsA: Problem with printf and scanf - My code does not print the correct information
Come on: on RG, on age, on phone and on mobile you are using the & before variable (at the time of printing). Follow the corrected code: #include <stdio.h> #include <stdlib.h> void…
-
1
votes1
answer352
viewsQ: How to implement a copy constructor for a two-dimensional matrix in C++?
I have the following situation: a class Matriz implemented as follows: Header: #ifndef MATRIZ_H #define MATRIZ_H class Matriz { public: Matriz(unsigned int nL, unsigned int nC); ~Matriz();…
-
0
votes2
answers85
viewsA: error: use of Deleted Function Fight::Fight()'
Ok, let’s go in parts. We don’t usually include . cpp in main. You have correctly included include Guard in headers (.h), but not . cpp, which caused redefinition of functions. And said that UEC01 =…
-
0
votes1
answer206
viewsA: Nodejs/npm/Cordova Development Environment on Linux Mint
First let’s try to update the Packages system to see if there is an update to either Nodejs or NPM. Open the terminal and type: sudo apt-get update && sudo apt-get upgrade -y This updates…
-
0
votes1
answer25
viewsA: Get the path of a file within the project in string form
If your file is in the project root and the image in a folder: Meu_Metodo("Resources/Image1.png");
-
0
votes0
answers72
viewsQ: "Member access Within misaligned address" with a chained list
I’m solving a problem with leetcode (add two numbers that are inverted, each digit in a node of a chained list and return a chained list as a response). When giving Submit in the reply I get the…
-
1
votes2
answers335
viewsA: How to specify object in getcomponent?
Let’s assume that you have 3 objects and that you need to rotate the animations (the situation was not clear, if I got it wrong please correct me). using System.Collections; using…
-
1
votes1
answer281
viewsA: Chained List in C - How to implement insertion function
Do your input readings on main, create a new record on main (you didn’t put the creation function Log, so I assumed you haven’t implemented it yet). After reading the data, put this way in the…
canswered Raphael Sauer 158