Help me in solving VADD4 problem

My issue

My code

#include <stdio.h>

int main() {
  int length = 45 ; 
  int width = 76 ; 
  int area = length * width;
  printf("The Area of the given rectangle %d", area ); 
  return 0;
}

Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone

@akanksha78145
In your code, there seems to be part missing from the print statement which might be causing the error.

printf("The Area of the given rectangle is %d", area ); // *is* was missing 
1 Like

Thanks for helping