Quantcast
Channel: Webminal - Latest topics
Viewing all articles
Browse latest Browse all 484

Prog#250: biggest of two nos

$
0
0

@angala wrote:

/*
biggest of two nos.
Program#250
*/
#include<stdio.h>
main()
{
int a,b,c;
scanf("%d %d", &a, &b);
c=big(a,b);
printf("%d", c);
}
big(x,y)
int x,y;
{
int z;
z=(x>y)?x:y;
return z;
}

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 484

Trending Articles