CJCoding With Joseph

Copy a Struct

A Point struct (int x, y) is defined. Create a Point p = {5, 8}, then copy it into another Point q using simple assignment (q = p). Print q's fields separated by a space.

Expected output:
5 8

Expected Output:

5 8
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.