fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. float w,l ;
  6. printf("Enter w");
  7. scanf("%f",&w);
  8. printf("Enter l");
  9. scanf("%f",&l);
  10. printf("Area:%f","w*l");
  11. return 0;
  12.  
  13. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Enter wEnter lArea:0.000000