Advertisement
Matt34

Untitled

Jun 27th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. int MattVariable;
  7. int MattVariable2;
  8.  
  9. printf( "Please enter a number for use with MattVariable: " );
  10. scanf( "%d", &MattVariable );
  11. printf( "Please enter another number for use with MattVariable: " );
  12. scanf( "%a", &MattVariable2 );
  13. printf( "you entered %d, and %a, ", MattVariable, MattVariable2 );
  14. printf( " Nigga those numbers confirm that you are gay as hell.\n" );
  15. getchar();
  16. return 0;
  17. }
  18.  
  19. /*
  20.  
  21. Oh my fucking god this is annoying as shit
  22.  
  23. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement