#include <stdio.h> void function(int); void (*fun)(float) = function; int main() { fun(12); } void function(int n) { printf("%d\n", n); }
Undefined behaviour
Previous Question Next Question
Your comments will be displayed only after manual approval.