Posts by Marcelo Cristiano Araujo Silva • 81 points
3 posts
-
3
votes1
answer213
viewsA: C - Is it possible to insert a matrix into a structure?
Perfectly possible. Here is an example of using two elements of this matrix: #include <stdio.h> typedef struct matriz{ int matriz[2][2]; }Matriz; int main() { Matriz uma_matriz;…
-
1
votes1
answer337
viewsA: How to disable materialize input
I don’t think there is a way to disable a Property from your file. What I recommend is: If you imported the style sheet to your project, look for the input tag and remove all stylings; Create your…
-
1
votes2
answers1990
viewsA: How to insert items from a JSON file into an html table
I had some problems using your JSON. I recommend using the jsonformatter site to format and validate your variable. [ { "nome":"João Silva", "cpf":"444.111.777-00", "rg":"44.66.55.00-1",…