CJCoding With Joseph

Compass Direction

Read a single direction letter (N, E, S, or W) with scanf and print the full direction name with no trailing newline:

N -> North, E -> East, S -> South, W -> West.

For input N the output is North; for W it is West.

Expected Output:

North
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
N\n
This input is automatically fed to your program's stdin
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.