Posts by Larissa Benevides Vieira • 67 points
3 posts
-
1
votes1
answer400
viewsQ: I’m having trouble compiling a java code using Packages on linux
I don’t know exactly the command to compile a java file on linux that shares the same package. I tried to follow this tutorial:https://www.webucator.com/how-to/how-compile-packages-java.cfm but the…
-
2
votes1
answer57
viewsQ: Warning: "No local application has been provided. You can set it in the Run menu, Parameters" Dynamic DLL Creation Problem in C++ in DEV++
I am trying to create a DLL with the code that the teacher passed, but it does not compile correctly. Keeps appearing the warning: "No local application provided. You can set it in the Run menu,…
-
2
votes1
answer238
viewsQ: How to pass a dynamically allocated struct to a C function?
The program must dynamically allocate the struct and pass it as parameter. #include <stdio.h> #include <stdlib.h> typedef struct cadastro_de_mercadoria{ int codigo; int estoque; }…