โ Back to Structs
Question 326
Initialize a Struct with Designated Initializers
Initialize a Struct with Designated Initializers
Astruct Pointhasintfieldsxandy. Create a point using designated initializers (the.field = valuesyntax) withxset to 3 andyset to 4, then print the two fields separated by a single space: 3 4 Useprintfwith%d %d. There is no trailing newline.
Expected Output:
3 4
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.