Posts by Jorge Nachtigall • 101 points
2 posts
-
7
votes1
answer17601
viewsA: How to get these points out
In your css, add: li { list-style-type: none; } Or using only html: <ul style="list-style: none;"> <li></li> </ul> Cheers.…
htmlanswered Jorge Nachtigall 101 -
0
votes1
answer540
viewsA: Occurrence of letter in string - C
When you pass an array by reference to a function, in its call you simply put the name of the identifier of it, in your case: contagem(txt, letra); This should solve your problem, but there’s a…