fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. const * quotes[] =
  5. {
  6. "But her emails",
  7. "Cuck",
  8. "Fuck off we're full",
  9. "NPC lol",
  10. "Lock her up",
  11. "libtards smh"
  12. "mayocide isn't funny guys"
  13. };
  14.  
  15. void quote_if_bBlasted(int is_blasted)
  16. {
  17. if(is_blasted)
  18. {
  19. int random_quote = rand() % 7;
  20. printf("%s", quotes[random_quote]);
  21. }
  22. }
  23.  
  24. int main(void)
  25. {
  26. int bussy_blasted = 1;
  27. srand(time(NULL));
  28. quote_if_bBlasted(bussy_blasted);
  29. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
(null)