Is it correct to compile a C program with the gcc flag -fno-stack-protector in Ubuntu?
*I'm on an Ubuntu x86_64 system, gcc 11.4.0 I have this C program in a file test.c : int fx( int a, int* b ){ *b = 12; return a; } int main(){ int a = 20; int b =…