fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. int a = 5;
  6. float b = 2.5;
  7. int result = a + b;
  8. printf("%d",result);
  9. return 0;
  10. }
  11.  
  12.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
7