CJCoding With Joseph

Access a Field Through a Pointer

A struct Point with x = 7 and y = 2 exists, along with a pointer ptr to it. Using the pointer and the arrow operator ->, print the two fields separated by a space:

7 2

Do not access p directly; go through ptr. 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.