fork download
  1. #include <stdio.h>
  2.  
  3. struct bar {
  4. unsigned long long ll;
  5. unsigned int i1;
  6. unsigned int i2;
  7. };
  8.  
  9. int main(void)
  10. {
  11. bar fubar;
  12. fubar.ll = 1200;
  13. fubar.i1 = 2500;
  14. fubar.i2 = 450;
  15.  
  16. printf("Debt: %u Euro, Wallet: %u Euro, Outgoings: %u Euro.\n", fubar.ll, fubar.i1, fubar.i2);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Debt: 1200 Euro, Wallet: 0 Euro, Outgoings: 2500 Euro.