โ Back to Structs
Question 329
Access a Field Through a Pointer
Access a Field Through a Pointer
Astruct Pointwithx = 7andy = 2exists, along with a pointerptrto it. Using the pointer and the arrow operator->, print the two fields separated by a space: 7 2 Do not accesspdirectly; go throughptr. There is no trailing newline.
Expected Output:
7 2
Topics:
Structs
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.