We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Conditional Statements in C
Conditional Statements in C
Sort by
recency
|
529 Discussions
|
Please Login in order to post a comment
include
int main() { int x = 0;
}
Using Ternary Operator
include
int main() { int n; scanf("%d",&n); if(n==1) { prinf("one"); } else if(n==2) { printf("two"); } else if(n==3) { printf("three"); } else if(n==4) { printf("four"); } else if(n==5) { printf("five"); } else if(n==6) { printf("six"); } else if(n==7) { printf("seven"); } else if(n==8) { printf("eight"); } else if(n==9) { printf("nine"); } else if(n>9) { printf("greaterthan nine"); } }