fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6. int i = 5;
  7. int j = 12;
  8. int k = i + j;
  9. printf("5 + 12 =%d\n", k );
  10. return 0;
  11. }
Success #stdin #stdout 0s 5248KB
stdin
Standard input is empty
stdout
5 + 12 =17