mihir a kamdar


{ City } bangalore
< Country > india
* Profession * student
User No # 57212
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 0
Questions / { mihir a kamdar }
Questions Answers Category Views Company eMail




Answers / { mihir a kamdar }

Question { 8144 }

find largest of 3 no


Answer

#include
main()
{
int n1,n2,n3,big;
printf("Enter 3 No.=");
scanf("%d %d %d",&n1,&n2,&n3);

if(a>b)
big=a;
else
big=b;

if(c>big)
big=c;

printf("\n Largest No is=%d",big);

getch();
}



}

Is This Answer Correct ?    4 Yes 0 No