Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check whether a number is even or odd.
#include <stdio.h> int main() { int n; scanf("%d", &n); if (n % 2 == 0) printf("Even\n"); else printf("Odd\n"); return 0; }
7
Odd