Posts by Lucas Costa • 21 points
2 posts
-
0
votes3
answers342
viewsA: JSON integration with Swift
Rafael, I tried to create an example to try to solve your doubt using another possibility Codable, this json represents an object that we want to use in our project, in the second image is how we…
-
2
votes3
answers91
viewsA: My program compiles but hangs on the first printf
Hello! You should use & in variables when using scanf. Example: scanf("%d", &n1); Because the value you enter will be stored in the address of n1, when you are in the topic of pointers you…