@sanskrutin10
U have to print the whole sentence like this
#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;
}
int main() {
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;
}