We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#include <assert.h> #include <stdlib.h> #include <stdint.h> int main() { char*p = malloc(100); assert(p); }
the assertion never triggers, tho it ought to be able to, given that real malloc can fail.