Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

about 6 years ago

Language

C

Compiler

gcc 9.1.0

Options
Warnings
C99
-pedantic

Author

anonymous

about 6 years ago

$ gcc prog.c -Wall -Wextra -std=c99 -pedantic
prog.c: In function 'main':
prog.c:6:6: error: assignment of read-only location '*p'
    6 |   *p = 1;
      |      ^
prog.c:9:5: error: assignment of read-only variable 'q'
    9 |   q = &b;
      |     ^
Exit Code:
1