Home » , » Basic C Programming Practice - Practice 12

Basic C Programming Practice - Practice 12

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

=> Write a program in C to find out biggest of two numbers?





Solution :

                                           #include<stdio.h>
                                           #include<conio.h>
                                              main()
                                             {
                                                         int First_numb,Second_numb;
                                                         
                                                         printf("Please Enter First Number : ");
                                                         
                                                         scanf("%d",&First_numb);
                                                         
                                                         printf("Please Enter Second Number : ");
                                                         
                                                         scanf("%d",&Second_numb);
                                                         
                                                         if(First_numb>Second_numb)
                                                         
                                                         printf("First Number Is Biggest");
                                                         
                                                         else
                                                         
                                                         printf("Second Number Is Biggest");
                                                         
                                                         getch();
                                               }


Program Analysis :
To determine which number is biggest we can simply compare between two number by using a relational operator like ( < or > )

I solve this problem by using simple if else if decision control statement.Start practicing.
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