12 lines
76 B
C
12 lines
76 B
C
void x()
|
|
{
|
|
void (*fp)() = 0;
|
|
fp();
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
x();
|
|
return 0;
|
|
}
|