What kind of error does the following code block produce ?
#include <cassert> int main() { assert(1 == 1); assert(2 == 1); }
Exception
Compilation Error
Execution Error
Undefined behavior