CJCoding With Joseph
15per day

Multiple Variables

Create a char array with the value "Sarah" and an int variable with the value 22. Use one printf statement to display:

My name is Sarah and I am 22 years old

Use %s for the string and %d for the int. Make sure to use the variables in the correct order within printf.

Expected Output:

My name is Sarah and I am 22 years old
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.