MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / inputNewData

Function inputNewData

Project_Bank_Management_System/Header.h:215–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213 }
214}
215void inputNewData(accounts data) {
216 ofstream file;
217 file.open("data.txt", ofstream::app);
218 file << data.name;
219 file << "|";
220 file << data.password;
221 file << "|";
222 file << data.balance;
223 file << "|";
224 file << data.borrowed;
225 file << "|";
226
227
228
229
230 file.close();
231}
232void inputUpgradeData(accounts data[]) {
233 ofstream file;
234 file.open("data.txt");

Callers 1

MainMenuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected