fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int y, z;
  5. int x=4;
  6. for(y=0; y<x; y++)
  7. {
  8. z=y*x;
  9. }
  10. printf("%d",&z);
  11. return 0;
  12. }
  13.  
  14.  
Success #stdin #stdout 0s 5520KB
stdin
Standard input is empty
stdout
168974932