ARTICLE AD BOX
I'm trying to build a program to store data in a seperate file:
#include <iostream> #include <fstream> #include <string> #include <ctime> int main() { std::string address; std::string na; std::string whoami; std::ofstream Orders("OrderList.txt"); std::cout << "Type Address\n "; std::cin >> address; std::cout << "Type your name\n"; std::cin >> na; std::cout << "Type how many cookies you want!(also what kind,etc.)\n"; std::cin >> whoami; Orders << na, whoami, address; return 0; }...but my input area won't show up. there are no obvious bugs, so I think I need serious help. Building this in a text editor.
