Saturday 29 August 2015

Write a c program to find largest among three numbers using binary minus operator

 

 Write a c program to find largest among three numbers using binary minus operator.

 
#include<stdio.h>
int main(){
    int a,b,c;
    printf("\nEnter 3 numbers: ");
    scanf("%d %d %d",&a,&b,&c);
    if(a-b>0 && a-c>0)
         printf("\nGreatest is a :%d",a);
    else
         if(b-c>0)
             printf("\nGreatest is b :%d",b);
         else
             printf("\nGreatest is c :%d",c);
    return 0;
}

One Response so far.

  1. Geminair says:

    Hello! I just would like to give a huge thumbs up for the great info you have here on this post. I will be coming back to your blog for more soon.
    Air Conditioning Sydney

Leave a Reply

 
 

Labels

Blog Archive