My issue
help me to find out mistakes in my code
My code
#include <stdio.h>
int main(void) {
int area;
int length=76;
int width=45;
printf("The Area of the given rectangle is" );
printf("%d",(area= length*width);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone