0
Wap to find out greater between two numbers
With declaration and return value
8 Antworten
0
Barshu
oh. I know but tell me how you are trying?
Just wrap this in a function :
int greater(int a, int b)
{
int big=0;
//add logic to find big, that you know..
if (a>b)
big = a;
else
big = b;
return big;
}
+ 2
@Barshu
Try yourself first and post your attempt, if unsolved...
Happy learning..
+ 2
Jayakrishna🇮🇳 I tried but I can't solve it please post your ans 🥺
+ 2
Are yarrrr
I know this methodJayakrishna🇮🇳
I mention In question that with declaration and return value
+ 1
Thank you Jayakrishna🇮🇳
+ 1
I apply your logic but I solve it an another way
And send it to my teacher
Just wait a while
I am also waiting for her response to my program
0
If it solved, then may I see your total code..!?
Anyways, hope it helped..
You're welcome... Barshu
- 1
No Problem. Barshu
Post that try, so you may get where you did mistake...
edit:
simple way:
if (a>b)
printf("a big");
else
printf("b big");