Language
C++
Compiler
gcc 12.1.0
Options
Warnings
Don't Use Boost
Compiler Default
no pedantic
Raw compiler options
-fpermissive
#include <cstdio>
#include <cstdlib>
int main(void) {
float* a = malloc(sizeof(*a));
puts("hello, world");
return 0;
}
$ g++ prog.cc -Wall -Wextra -fpermissive
hello, world
Exit Code:
0