/*__________________________________________________ Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C Ejemplo 11.33.3: "Uso de \n" Web del Autor: http://www.carlospes.com __________________________________________________*/ #include int main() { printf( "\n" ); printf( "uno dos tres" ); return 0; }