1. #include <stdio.h>
  2.  
  3. int thisFunction(void);
  4.  
  5. int main(int argc, char *argv[]){
  6. int i = thisFunction+1;
  7. printf("Gamefaqs is %d/n", i);
  8. return 0;
  9. }
  10.  
  11. int thisFunction(void){
  12. /* Write Code Here */
  13. return 1336;
  14. }