Home » , » Basic C Programming Practice - Practice 8

Basic C Programming Practice - Practice 8

Written By Unknown on Thursday, October 10, 2013 | 11:37 PM

=> Write a program in C to print a word form of given number between 0 to 99?




Solution :

//print a word form of given number between 0 to 99 //


                                      #include<stdio.h>
                                      #include<conio.h>
                                        int main()
                                              {
                                                    int numb;
                                                    scanf("%d", &numb);
                                                    if ( numb==10)
                                                    printf("Ten");
                                                    else
                                                    if ( numb==20)
                                                    printf("Twenty");
                                                    else
                                                    if ( numb==30)
                                                    printf("Thirty");
                                                    else
                                                    if ( numb==40)
                                                    printf("Fourty");
                                                    else
                                                    if ( numb==50)
                                                    printf("Fifty");
                                                    else
                                                    if ( numb==60)
                                                    printf("Sixty");
                                                    else
                                                    if ( number==70)
                                                    printf("Seventy");
                                                    else
                                                    if ( number==80)
                                                    printf("eighty");
                                                    else
                                                    if( number==90)
                                                    printf("Ninty");
                                                    else
                                                    printf("others"); 

                                                getch();

                                                } 



Program Analysis :
Its a simple program based on if else if expression,condition and statements.It is done by creating if else if chain and statements don't goes with condition,declared as OTHERS 

Share this article :

Post a Comment

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. Learn Programming - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger| Distributed by Rocking Templates