My issue
as i submitted my code its showing out put not enabling next option
My code
#include <stdio.h>
int main() {
int length = 45;
int width = 76;
int area = length * width;
printf("The Area of the given rectangle is %d", area);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone