C code confusing, as always... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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 "); }

13th May 2021, 9:09 PM
Edward Finkelstein
Edward Finkelstein - avatar
0 Answers