Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
15
Posts with Downvotes
6
Downvoting Members
10
4 Commented Posts
0 Endorsements
~770 People Reached
Favorite Forums

5 Posted Topics

Member Avatar for Sahilroy

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 …

Member Avatar for Ancient Dragon
0
128
Member Avatar for sahasrara

[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(){}; …

Member Avatar for mike_2000_17
0
226
Member Avatar for Sahilroy

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

Member Avatar for mike_2000_17
-3
159
Member Avatar for Sahilroy

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 …

Member Avatar for techsurge
-7
136
Member Avatar for Sahilroy

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 …

Member Avatar for Narue
0
121

The End.