Posts by Murilo Chianfa • 43 points
3 posts
-
2
votes3
answers694
viewsA: The code skips the fgets, not reading the word
In my case, I decided to just clean the buffer: char nomeJogador1[32]; setbuf(stdin, 0); printf("Nome do 1° jogador: "); fgets(nomeJogador1, 32, stdin);
-
0
votes2
answers818
viewsA: Modal Boostrap reduces site body size
Good afternoon guys, I solved the problem by adding: <style> body { padding-right: 0 !important; } </style> the previous reply from the friend helped me a lot. thanks very much.…
-
1
votes1
answer384
viewsQ: Return pixel of a certain color analyzed by Imagegrab
I need to identify a color in a pixel "rectangle" and return its position to save to a variable. For example, in this image, I need to detect the blue color, and when detected it returns to me the…