fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. int length = 5;
  6. int breadth = 7;
  7. int area = length*breadth;
  8.  
  9. printf("Area = %d\n", area);
  10. return 0;
  11. }
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Area = 35