Saturday, 12 August 2017

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;
}

Tuesday, 6 November 2012

Hi friends,

as this is my first blog so i decided to share my experience with you if any of the context will not clear please comment i will try to help you all.


basically from next blog i will share some interview experiences and question that i found during the interview and from other sources.