0
C code confusing, as always...
I don't get this code at all, can someone please explain it. #include <stdio.h> void foo(); int main() { void (*bar)() = foo; (*bar)(); bar(); return 0; } void foo() { printf("Sololearn "); }
1 Antwort
I don't get this code at all, can someone please explain it. #include <stdio.h> void foo(); int main() { void (*bar)() = foo; (*bar)(); bar(); return 0; } void foo() { printf("Sololearn "); }