fork(1) download
  1. #include <stdio.h>
  2.  
  3. void telaAjuda1() {
  4. printf("f1");
  5. }
  6.  
  7. void telaAjuda2() {
  8. printf("f2");
  9. }
  10.  
  11. int main(void) {
  12. int opAjuda;
  13. scanf("%i", &opAjuda);
  14. void (*opcoes[])() = {&telaAjuda1, &telaAjuda2};
  15. (*opcoes[opAjuda - 1])();
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2116KB
stdin
2
stdout
f2