fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. float ( *GetPointer( int a ) )[10]
  6. {
  7. ( void )a ;
  8. return NULL ;
  9. }
  10.  
  11.  
  12. int main(void) {
  13.  
  14. GetPointer( 123 ) ;
  15.  
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2004KB
stdin
Standard input is empty
stdout
Standard output is empty