#include <stdio.h>
struct largest
{
int n1,n2;
};
int main()
{
struct largest L;
printf("enter any 2 integers\n");
scanf("%d%d",&L.n1,&L.n2);
if(L.n1>L.n2)
printf("largest is %d",L.n1);
else
printf("largest is %d",L.n2);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: