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