“Leia a variável para arquivar CPP” Respostas de código

Leia a variável para arquivar CPP

int main()
{
  	// writing process
    char name[20], phone[20];

    cout<< "Enter your name: ";
    cin>> name;
    cout<< "Enter you phone number: ";
    cin>> phone;

    ofstream file_w ("test.txt");

    file_w << name <<endl
           << phone<<endl;

    cout << "Process complete";
    file_w.close();
	
  	// reading the vairable's values
    ifstream file_r ("test.txt");

    char Name[20], Phone[20];

    file_r >> Name >> Phone;

    cout<< "Name = " << Name << endl << "Phone = " << Phone ;

    return 0;
}
Sleep deprived

Escreva a variável para arquivar CPP

int main()
{
    char name[20], phone[20];

    cout<< "Enter your name: ";
    cin>> name;
    cout<< "Enter you phone number: ";
    cin>> phone;

    ofstream file_w ("test.txt");

    file_w << name <<endl
           << phone<<endl;

    cout << "Process complete";
    file_w.close();
  
    return 0;
}
Sleep deprived

Respostas semelhantes a “Leia a variável para arquivar CPP”

Perguntas semelhantes a “Leia a variável para arquivar CPP”

Mais respostas relacionadas para “Leia a variável para arquivar CPP” em C++

Procure respostas de código populares por idioma

Procurar outros idiomas de código