My issue
include <stdio.h>
int main(void) {
// your code goes here
int length=45;
int width=76;
int area;
area=length * width;
printf(“The area of the given rectangle is%d”,area);
return 0;
}
My code
#include <stdio.h>
int main(void) {
// your code goes here
int length=45;
int width=76;
int area;
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