fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main () {
  5. int (*print_func)(const char*) = printf;
  6. print_func("I know everything about C");
  7. }
Success #stdin #stdout 0.01s 5220KB
stdin
Standard input is empty
stdout
I know everything about C