My issue
the output is correct but it is showing nothing, then again after submission it says it is wrong
My code
#include <stdio.h>
int main(void) {
int length=45;
int width=76;
int area=length*width;
printf("The Area of the given rectangle is %d",area);
// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone