fork download
  1. #include<stdio.h>
  2. int main(){
  3. int length ;
  4. int breadth ;
  5.  
  6.  
  7. printf("enter breadth\n");printf("enter breadth\n");
  8. scanf("%d" , &length);
  9.  
  10. printf("enter breadth\n");
  11. scanf("%d" , &breadth);
  12. printf("the area of this rectangal is %d" , length*breadth);
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
enter breadth
enter breadth
enter breadth
the area of this rectangal is 1768451296