I was making a simple test program to do some simple things, and somewhy, I got a giggle out of this test program,
perhaps I am the only one, but I wanted to share it.
PHP Code:
#include <assert.h>
void proof_a()
{
assert(1 + 1 != 2);
}
main()
{
proof_a();
}
output:
Quote:
Assertion failed: 1 + 1 != 2, file tester.c, line 5
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
|
Perhaps this is just me, but I got a giggle out of this output.