fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int pidaron = 3;
  5. int nonpidaron[] = {1, 2, 4, 5};
  6. int pidaron2 = 6;
  7. printf("adress of pidaron is %p\n", &pidaron);
  8. printf("Pidaron! Выйди вон! %p\n", *(nonpidaron + 5));
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
adress of pidaron is 0xffa24ebc
Pidaron! Выйди вон! (nil)