C 91 bytes
#include <stdio.h> #include <stdlib.h> int main(void){ printf("%s", variable); return 0; } Displays the error (91 bytes):
main.c:5:15: error: use of undeclared identifier 'variable' printf("%s", variable);
#include <stdio.h> #include <stdlib.h> int main(void){ printf("%s", variable); return 0; } Displays the error (91 bytes):
main.c:5:15: error: use of undeclared identifier 'variable' printf("%s", variable);