CJCoding With Joseph

Function: Is Odd

Write a function isOdd(int n) that returns 1 when n is odd and 0 when it is even. Read one integer from input, then print the result. For input 7 the output is:

1

Print just the 1 or 0 with %d (no newline).

Expected Output:

1
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
7
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.