- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 15
- Posts with Downvotes
- 6
- Downvoting Members
- 10
5 Posted Topics
I was given an assignment to complete on database, i have created it and also works but crashes after executing once, check it friends and please help, if you can modify or make it works my time is really limited and am unable to find a solution, friends be graceful …
[CODE]//linked list bubble sort //programming by : Erfan Nasoori //Mail : [email protected] //Date of send : 2009/1/13 #include <iostream> #include <conio.h> using namespace std; class node { friend class linklist; int number; node *next; }; class linklist { private: node *first; node *last; public: linklist(){ first = NULL; } ~linklist(){}; …
I was given an assignment to complete on database, i have created on but crashes after executing once, check it friends and please help, if you can modify or make it way, i'll be graceful. Please find the coding in attachment section. thanks hope will get good response
Creating and maintaining a database. The program should make use of functions, linked list, structures, arrays, pointers, and data files (input and output files). It should be able to do the following: Add record, delete record, update record, Sorting & Searching (on both string and numbers), triggers, and alert messages …
Write a program which generates randomly some numbers (integer) say 20 numbers between 1 and 100 and send it to an output file called randOutput.txt. Next your program should open this file (randOutput.txt) and check whether the numbers are ordered either ascending (or descending) or not. So you should have …
The End.
Sahilroy