CJCoding With Joseph

Initialize a Struct with Designated Initializers

A struct Point has int fields x and y. Create a point using designated initializers (the .field = value syntax) with x set to 3 and y set to 4, then print the two fields separated by a single space:

3 4

Use printf with %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.