A blog for C programs, notes and articles about C, the programming language.
#include<stdio.h> void main() { int n; printf("Enter an integer\n"); scanf("%d",&n); if ( n%2 == 0 ) printf("Even"); else printf("Odd"); }
Post a Comment
No comments:
Post a Comment