“Abrir otro archivo” Código de respuesta

Abrir otro archivo

freopen("myprogoutput.txt","w+",stdout)
see "welcome" + nl
for x = 1 to 10
        see x + nl
next

/*
** Read : https://en.wikipedia.org/wiki/Device_file#Device_files
** The next code is not portable, we can use iswindows() before
** using it and we can write special code for each operating system.
*/

freopen("CON","w",stdout)       # For Microsoft Windows
see "Done" + nl                 # print to stdout again
Joker

Abrir otro archivo

Freopen(cFileName,cMode,file handle) ---> file handle
Joker

Respuestas similares a “Abrir otro archivo”

Preguntas similares a “Abrir otro archivo”

Más respuestas relacionadas con “Abrir otro archivo” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código