Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Nous

    C++ [fstream] Data Add, List and Search

    Here is the code I made for adding to the database, 😬 void addDb() { string itemName; float itemPrice; int itemStock; ofstream dbfile; dbfile.open("database.txt"); cout << "[Add New Furniture]" << endl; cout << "Please enter furniture name: " ; cin >>...
  2. Nous

    cout << "hello world" << endl;

    Hi ya @Malcolm Well, not yet, mostly code snippets to practice what I learn. I am working on my first project, which is a simple cmd line platform for a furniture store. With a basic login function, menu function, txt based database functions and stuff. Thanks for the welcome 🙂 I did just post...
  3. Nous

    Fun activity Say hello... in a coding language!

    #include <iostream> using namespace std; int main() { cout << "Hello World" << endl; return 0; } :alien:
  4. Nous

    cout << "hello world" << endl;

    Hey guys! Quite new here, Saw @Malcolm's siganture on ForumPromotion and thought of joining. I am a CS student currently entering my journey into the word of software engineering. Currently learning C++. Hope to make some new friends here and help out wherever I can. :blush:
  5. Nous

    C++ [fstream] Data Add, List and Search

    Hey guys, A newbie here! 👋 I have this problem, so I have to use c++ to add data to a txt file (item name, price) and after adding that I want to be able to save that txt file, be able to list all the data in the txt file and also search that txt file. I am currently in the midst of...
Back
Top Bottom