Posts by Enrico Camponogara Da Silva • 57 points
5 posts
-
2
votes2
answers607
viewsQ: Is it possible somehow to overload functions in C?
I’m already programming in C, in a procedural way, but a few months ago I started programming oriented to objects. In Java, it is possible to overload functions. Since Java is an object-oriented…
-
0
votes5
answers939
viewsA: Centralize H3 in the Section
Try to use margin: 0 auto;. If not, try to leave the Section flex! Remembering, margin can be used in many ways, telling which sides of magin you want to use: margin-left, or can be used as margin:…
cssanswered Enrico Camponogara Da Silva 57 -
2
votes1
answer242
viewsQ: How to access a pointer within a pointer structure
I know that to access a normal variable within a pointer structure I can use this syntax: struct teste { int valor; int *aponta; }; struct teste testando, *testado; testado = &testando; testado…
-
1
votes1
answer730
viewsQ: Use Import or Include in C/C++?
#import <stdio.h> or #include <stdio.h> What is the correct way to use? I’ve been watching videos on Youtube for a while.…
-
0
votes2
answers67
viewsA: Radio buttom that when selected changes the background of a div and saves the result in the BD
function verde() { document.body.style.backgroundColor = "#00ff00"; } function laranja() { document.body.style.backgroundColor = "#FFA500" } function vermelho() { document.body.style.backgroundColor…