fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int dynQueueLength = 300;
  5. typedef void (*uType_fp)(void);
  6. uType_fp * dpQueue;
  7. dpQueue = (uType_fp*)(malloc(dynQueueLength * (sizeof(uType_fp))));
  8. dpQueue[0] = 0;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty