My issue
My code
#include <stdio.h>
int main(void) {
// your code goes here
int b=23;
int r=45;
if(r>b)
{
printf("Rob Scored higher marks than Bob\n");
}
else if(b==r)
{
printf("Bob & Rob both scored the same\n");
}
b=15;
r=15;
if(r>b)
{
printf("Rob Scored higher marks than Bob\n");
}
else if(b==r)
{
printf("Bob & Rob both scored the same\n");
}
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone