CJCoding With Joseph

Zero-Initialize a Struct

A struct Point has three int fields: x, y, and z. Create one with every field set to 0 using the {0} initializer, then print the fields separated by spaces:

0 0 0

Use = {0} rather than assigning each field by hand. There is no trailing newline.

Expected Output:

0 0 0
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.