CJCoding With Joseph
15per day

Printf String Variable

Create a char array (string) with the value "Alice" and use printf with %s to display it in the sentence:

My name is Alice

Do not type the name directly in the printf statement. Instead, use the char array variable you created with the %s format specifier.

Expected Output:

My name is Alice
Topics:
Printing
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.