Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

10 months ago

Language

C

Compiler

gcc 13.2.0

Options
Warnings
C11(GNU)
no pedantic

Author

anonymous

10 months ago

$ gcc prog.c -Wall -Wextra -std=gnu11
prog.c: In function 'main':
prog.c:10:5: warning: using dangling pointer 'py' to 'y' [-Wdangling-pointer=]
   10 |     printf("%d\n", *py);
      |     ^~~~~~~~~~~~~~~~~~~
prog.c:6:13: note: 'y' declared here
    6 |         int y = 42;
      |             ^
42
Exit Code:
0