#include #include void f(n){ int a[n]; a[n]=12; printf("%dn",a[-1]); return; } int main(){ f(5.5); return 0; }