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