fork download
  1. #include<stdio.h>
  2.  
  3. void main()
  4.  
  5. {
  6. int length,width,area;
  7. printf("Enter the value of length and width:> ");
  8. scanf("%d %d",&length,&width);
  9. area=length*width;
  10. printf("\narea= %d",area);
  11.  
  12. }
  13.  
Runtime error #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
Enter the value of length and width:> 
area= 1399186028