Posts by Guilherme Bartasson • 21 points
6 posts
-
0
votes1
answer48
viewsQ: Code in C simply closes
#include <stdio.h> #include <stdlib.h> void recebeNumCartas(int *nAlice, int *nBeatriz){ scanf("%d %d", nAlice, nBeatriz); } int achaMenor(int nAlice, int nBeatriz, int menor){ menor =…
casked Guilherme Bartasson 21 -
1
votes1
answer668
viewsQ: Create a file in another directory
I have a folder that contains my file . c, its executable and another folder called Arquivos. I need that when the function below is executed the file is created in the folder Arquivos and not in…
-
0
votes2
answers66
viewsQ: What’s wrong with this query?
Okay, I’m trying to select a database through ajax using jQuery. Below are excerpts of the code I’m using and more explanations: Ajax function function carregaRegistros(dia, mes, ano) { dia =…
-
0
votes0
answers41
viewsQ: Form action parameter opening php script
My problem is relatively simple, I have a form and I need that: when clicking the Submit button the data is passed to a php file (referenced in the action parameter of the form) that will save the…
-
0
votes0
answers49
viewsQ: How do I remove Ivs and then reinsert them? (using javascript only)
Good I have the following interface: The idea is: by pressing the left button, for example, the page should display the month before the current one as well as the number of squares relative to the…
javascriptasked Guilherme Bartasson 21 -
1
votes1
answer1794
viewsQ: Spring Framework Error: Unable to locate or load main class
I’m following some lessons from a Spring workshop, but I can’t go on because of the mistake: Unable to locate or load main class. Below is the code containing the main function: package…