Posts by Willian Silva • 122 points
4 posts
-
7
votes1
answer144
viewsQ: The __fastcall, necessary or not?
What is the usefulness of using __fastcall in the C function call++?
-
0
votes3
answers1916
viewsA: How to replace vowels with @
Well, I thought of this solution: #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char vogais[] = {'a','A','e','E','i','I','o','O','u','U'}; char texto[20]…
-
0
votes3
answers187
viewsA: What do these operators " > " and " mean? "
The equivalence of that would be: int larger; if(left > right){ larger = left; }else{ larger = right; } The name of this code instruction: int larger = (left > right? left : right); is called…
-
2
votes2
answers2674
viewsQ: Handler? What is this and what is it for in C/C++?
For a long time I’ve seen many code using this type HANDLER. What is it and what is it for? Where I find tutorials that teach you how to use it.