fork download
  1.  
  2.  
  3. #include "stdio.h"
  4.  
  5. int main()
  6. {
  7. float b, h, area; // base, altura, area
  8.  
  9. scanf("%f %f", &b, &h)
  10.  
  11. area = b * h;
  12.  
  13. printf("area: %f", area);
  14.  
  15. //getch();
  16.  
  17. return 0;
  18. }
  19.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
julianna
compilation info
prog.c: In function ‘main’:
prog.c:11: error: expected ‘;’ before ‘area’
prog.c:9: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result
stdout
Standard output is empty