Posts by Guilherme M.Santos • 65 points
2 posts
-
3
votes2
answers767
viewsQ: Compare String Elements in C
I would like to separate a word and compare each element of the string with a letter, I tried to make this comparison using the strcmp() but when executed seems to ignore it, or does not perform.…
-
3
votes1
answer112
viewsQ: How does Python identify which commands are inside if?
In C we have how to inform the size, or how far the function is present as for example: if (n > 2){ ... } but in Python is if n > 2: ... I would like to understand how far these functions end…