fork download
  1. #include <stdio.h>
  2.  
  3. void nie_rozumiem(int *wtf) {
  4. *wtf = 5;
  5. }
  6.  
  7. int main() {
  8. int o_co_Ci_chodzi = 0;
  9.  
  10.  
  11. nie_rozumiem(&o_co_Ci_chodzi);
  12.  
  13. printf("%d", o_co_Ci_chodzi);
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
5