My issue
could not get what is the question and what will come in output
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");
}
else if(b==r)
{
printf("Bob & Rob both scored the same");
}
r=15;
b=15;
if(r>b)
{
printf("Rob scored higher marks than bob");
}
else if(r==b){
printf("Bob & rob both scored the same");
}
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone