/*you cannot change anything from here below*/
main()
{
exit(0);
}
/*you cannot change anything from here up*/
This was asked during an interview.
I was told to print something on console.
anybody?
|
|
One implementation defined way would be to use the
Or, you could do this with some macros and a printf (but not without introducing UB in some aspect or the other) at runtime.
|
|||||||||||||
|
|
Really surprised that nobody posted this yet:
Prints at runtime and no undefined behavior whatsoever. |
|||
|
|
|
weird question...
|
|||||||||||||||||
|
I think the interviewer wanted to know if you're aware of the #error directive ... just my 2 cents. |
|||
|
Most answers involve the #define c-preprocessor instruction to change what the program means. Most compilers also support something like
details depend on the compiler vendor. You can make code run BEFORE main(*) is called that way. |
||||
|
|
|
|||
|
|
|
Solution 1. This works without any preprocessor directives in cl and gcc, although I've not tested to make sure I'm not using any extensions:
I think it's valid but I can't remember if masking a standard library function is allowed or not. Solution 2 As several other answers have specified, you can use preprocessor directives, eg:
Solution 3 If your compiler supports any C++ features in addition to C, there are many answers:
Solution 4 I also looked for any way of forcing a run-time error (stack overflow, out of memory, null dereference, tc), which would normally cause the program to print something, but couldn't find any way that didn't involve running extra code, in which case the extra code might as well be printf. |
|||
|
|
|
If you interpreted the question to mean you could not or were not allowed to edit the file by commenting out |
|||
|
|
|
If you cannot find a workaround to edit that file, then use a different c file. |
|||||||||
|