“crear un archivo” Código de respuesta

hacer archivo

all: one two three

one:
    touch one
two:
    touch two
three:
    touch three

clean:
    rm -f one two three
Proud Panther

crear un archivo

#include <fstream>

int main() {
  std::ofstream output("example.txt");
  output << "The answer to life, the universe, and everything is ";
  output << 42;
}
Happy Horse

Respuestas similares a “crear un archivo”

Preguntas similares a “crear un archivo”

Más respuestas relacionadas con “crear un archivo” en C++

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código