โ Back to Structs
Question 338
First Initial of a Name
First Initial of a Name
Astruct Personstoreschar name[20]set to"Grace". Print just the first character of the name: G Achararray can be indexed like any array, soname[0]is the first letter. Print it with%c. There is no trailing newline.
Expected Output:
G
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.