Posted by Anonymous on Sun 16th Sep 21:38
download | new post | report as spam

  1. /*
  2.   --------------------
  3.   ---- Hola mundo ----
  4.   --------------------
  5.   Autor ---> noob4ever69
  6.   E-mail --> noob4ever69@gmail.com
  7.   Blog ----> noob4ever69.wordpress.com
  8. */
  9.  
  10.  
  11. #include <stdio.h>
  12.  
  13. char *creditos = {"\n  --------------------\n  ---- Hola mundo ----\n  --------------------\n\n  Autor ---> noob4ever69\n\n  E-mail --> noob4ever69@gmail.com\n\n  Blog ----> noob4ever69.wordpress.com\n\n"};
  14.  
  15.  
  16. int main()
  17. {
  18.     system( "cls" );
  19.  
  20.     printf( "%s", creditos );
  21.     printf( "   > Pulsa Enter para EJECUTAR..." );
  22.  
  23.     getchar();
  24.  
  25.     system( "cls" );
  26.  
  27.     printf( "\n  Hola mundo\n\n   > Pulsa Enter para SALIR..." );
  28.  
  29.     getchar();
  30.  
  31.     system( "cls" );
  32.  
  33.     return 0;
  34. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily
.
Syntax highlighting:

To highlight particular lines, prefix each line with @@
   Remember me