Posts by Alberto_Santos • 29 points
4 posts
-
0
votes0
answers62
viewsQ: My front-end is not communicating with the Back-End
I created a simple form in React to communicate with the back-end (Node js), but when I click the form button (this button has an event that is responsible for performing the request to the back-end…
reactasked Alberto_Santos 29 -
0
votes2
answers272
viewsQ: What are the benefits of using struct?
As that type variables struct are stored in memory, for example: struct livro{ char autor[10]; float preco; }; //como essas variaveis fica alocado na memória? struct livro livro1;…
-
1
votes0
answers65
viewsQ: Help in an exercise in c
Good night. I’m doubting how and where to start the following algorithm: Write an algorithm that in c that receives a check number and writes the equivalent word. For example, the value 112.43 must…
casked Alberto_Santos 29 -
1
votes2
answers47
viewsA: Matrix as parameter passage in C
Good night. To display the content contained in the array addresses you can use this code: int matriz[LINHA][COLUNA] = {{1,2,3}, {4,5,6}, {7,8,9}}; int i, j; for(i = 0; i < LINHA; i++) for(j = 0;…