fork download
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4. int a = 1;
  5. int b = 2;
  6. int c = 3;
  7. printf("%d + %d + %d = %d", a, b, c, a + b+ c);
  8. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
1 + 2 + 3 = 6