Posts by Flávio Menezes • 19 points
3 posts
-
0
votes1
answer386
viewsQ: Compile C Error in Gcc - Accentuation
Compiling the C code in GCC, and then running it. An accentuation error occurs: PROGRAM: #include <stdio.h> int main() { printf ("Bem Vindo ao Nosso Jogo de Adivinhação"); } Command Terminal:…
-
0
votes2
answers319
viewsA: Hide and show div using href
You can create a Javascript function: <script> function myFunction() { var x = document.getElementById('myDIV'); if (x.style.display === 'none') { x.style.display = 'block'; } else {…
-
0
votes2
answers830
viewsQ: How to subdivide HTML
How can I put a part of HTML in a separate file, and reuse the code. I have a MENU that will be used on several pages of the project. But in the case of code maintenance, it would be easier if you…
htmlasked Flávio Menezes 19