fork download
  1. #include <stdio.h>
  2.  
  3. int getShit() {
  4. return 5;
  5. }
  6.  
  7. int main(void) {
  8. // your code goes here
  9. if (int n = getShit() && n > 0) {
  10. printf ("n = %u", ++n);
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty