Tuesday, January 26, 2021

 #include<stdio.h>

int main()
{
  int a,b;
    printf("enter two numbers\n");
    scanf("%d %d" ,&a , &b);
    if(a>b){
        printf("%d > %d" , a , b);
    }
    else if(b>a)
    {
        printf("%d > %d " , b ,a);
    }
    return 0;
}

No comments:

HackCache ’26: A 48-Hour Online Hackathon Open to Every Student

  Hackathons are often associated with computer science students, experienced developers, and teams that already know exactly what they are...

Popular Posts