fork download
  1. #include <stdio.h>
  2.  
  3. typedef unsigned int var;
  4.  
  5. int main()
  6. {
  7. var x, y, z;
  8. x = 10;
  9. y = 20;
  10. z = x + y;
  11. printf("The sum of %u and %u is %u", x, y, z);
  12. return 0;
  13. }
Success #stdin #stdout 0s 5360KB
stdin
Standard input is empty
stdout
The sum of 10 and 20 is 30