Posts by jsamuelgc31 • 1 point
2 posts
-
0
votes3
answers315
viewsA: How to access a pointer within a structure?
The above answers are correct, but your code is wrong, you cannot declare structures within structure statements. What you can do is have structures as components of structure statements.
-
-2
votes2
answers76
viewsA: Error while running script
in addition to the "&" in "scanf" as already mentioned, you put in the main function the void and at the end of the code "Return 0", and this is wrong because void does not return anything.…