Contact: aviboots(AT)netvision.net.il
41,621 questions
54,284 answers
573 users
#include <stdio.h> int main() { int x = 11; if (x % 2 == 0) puts("even"); else puts("odd"); } /* run: odd */