fork download
  1. #include <stdio.h>
  2. int main(void){
  3. int wide,hight,area;
  4. printf("Enter wide");
  5. scanf("%d",&wide);
  6. printf("Enter hight");
  7. scanf("%d",&hight);
  8. area = wide*hight;
  9. printf("area=%d\n",area);
  10. }
Success #stdin #stdout 0.01s 5244KB
stdin
Standard input is empty
stdout
Enter wideEnter hightarea=933650624