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