โ Back to Structs
Question 337
Zero-Initialize a Struct
Zero-Initialize a Struct
Astruct Pointhas threeintfields:x,y, andz. 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.