Posts by FLemos • 381 points
6 posts
-
6
votes1
answer462
viewsQ: VBA/Excel - Subroutines stop while typing
I am working on a spreadsheet where the user has to type a given text into a cell at a certain time. I want to put a countdown side, so he can check how much time is left. However, when I start…
-
0
votes1
answer93
viewsQ: Modify VIM cursor by running on Console2
I cannot change the cursor type of VIM when I enter Insert mode, when I use Console2. I wanted him to do as he does in the cmd, as the figure below: Does anyone know if it’s possible, and if it’s…
-
0
votes4
answers15159
viewsA: C language - Prime numbers in vectors
You were not resetting the values of d and verifica every iteration of for, then your d continued to grow, and it only worked the first time. And besides, when I identified a non-prime number, from…
-
1
votes2
answers306
viewsA: Doubt in Struct + Pointer in C
If I understand correctly, you are wanting the second printf to have the same result as the first printf. How Param is a 12 element struct, when you make a pointer arithmetic, for each unit you add…
-
17
votes4
answers793
viewsQ: Simple Teaching of Pointers
I’m a sporadic programmer, and whenever I need to use pointers, I realize I’ve forgotten how to use it, and I have to work hard to learn everything again. Does anyone have any simple didactics to…
-
2
votes2
answers159
viewsA: How to control the flow when an invalid value is entered?
The command Return does not do what you want, that would be "jump"/"return" to a line, similar to jmp in Assembly. You can’t do this in C. O Return ends a certain function and returns its value to…