Posts by Vitor Sampaio • 151 points
2 posts
-
4
votes1
answer94
viewsQ: Nested pointers and references
I’m having a doubt in the interpretation (the way I read my code) on pointer assignments in the C language. I did not understand the logic of the following assignments: "If i and j are whole…
-
11
votes2
answers462
viewsQ: How to allocate dynamically when I don’t know how many positions I will use in C?
In a part of the code I need to transform an integer into binary and store it in a character array, however, I don’t know which integer I will receive to transform into binary, so I don’t know how…