fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. const char const* logo[] =
  5. {
  6. "/////// /// // //",
  7. "/ / /// //// ////",
  8. "/// /// // // // //",
  9. " / / /// // // //",
  10. " / / /// // //",
  11. " /// /// // //"
  12. };
  13. for(int i = 0; i < sizeof(logo) / sizeof(*logo); i++)
  14. {
  15. printf("%s\n", logo[i]);
  16. }
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
///////  ///  //        //
/     /  ///  ////    ////
/// ///       // // //  //
  / /    ///  //  //    //
  / /    ///  //        //
  ///    ///  //        //