CJCoding With Joseph

First Initial of a Name

A struct Person stores char name[20] set to "Grace". Print just the first character of the name:

G

A char array can be indexed like any array, so name[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.