Pages

Saturday, June 23, 2018

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


 

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

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


visit link download