Posts by Darlan Marques • 51 points
3 posts
-
2
votes2
answers130
viewsA: How does the interpretation of HTML code work?
So, it doesn’t mean that if the browser closed the tags, it closed them in the right place. I’ve had serious problems with tag forgetfulness at the beginning of my history, especially with Divs. The…
-
1
votes2
answers73
viewsA: Redirect: HTML or JS?
Let me put it simply. I usually use <a href="pt.stackoverflow.com">StackOverflow</a> when I need to create a link, for example: click here, and the user goes to the desired location. But…
-
2
votes3
answers64
viewsA: when I put a small number in my algorithm it works, but if the number is large the program returns 0
You must declare the minor variable and i, as long const const long menor; const long i; for ( i = 1; i < numz; i++){... Note: You should also change all variables int for const long.…