You are viewing a single comment's thread. Return to all comments →
char *array[]={"one","two","three","four","five","six","seven","eight","nine"}; if ((1<=n) && (n<=9)) { printf("%s\n",array[n-1]); } else { printf("Greater than 9"); }
Seems like cookies are disabled on this browser, please enable them to open this website
Conditional Statements in C
You are viewing a single comment's thread. Return to all comments →