Using GCC on Linux (Mint)
I have a line of code …
#pragma message "blah blah blah"
When I run GCC I get this output with no warning, errors, etc …
src/source_file.c:29:9: note: ‘#pragma message: blah blah blah’
29 | #pragma message “blah blah blah”
I see tutorials specifying how to use #pragma message ...
but I didn’t know what to expect from compiler output.