Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~970 People Reached
Favorite Forums
Favorite Tags
Member Avatar for problemkid

Hi i would like to ask what are the advantages of a dummy head linked list and what is the implementation steps? And if it is not too troublesome, i would like to ask how many linked list are there around.

Member Avatar for Narue
0
108
Member Avatar for problemkid

Hi good day to all, I am suppose to write a program using class that allows me to add or subtract numbers that are very long. Eg 100 digits. I have come out with a few ideas to go about doing it but need to clarify some points before i …

Member Avatar for dusktreader
0
139
Member Avatar for problemkid

Hello everybody. I am a college student studying Electrical Engineering. But due to some module policies, I have to take very heavy computing subjects for eg C and C++. Had no prior background in programming until like 6 months ago ? Barely passed my first computing module for my first …

Member Avatar for ArtphotoasiA
0
122
Member Avatar for makan007

I would like to know how can the swapping function be implemented using pointers, void swap (int*, int*) [CODE] //function prototypes void swap(int& a, int& b); //function (passing by ref) void swap(int& a, int& b) { int t = a; a = b; b = t; }[/CODE] Is this correct? …

Member Avatar for problemkid
0
464
Member Avatar for problemkid

Hi I am a beginner in C++ programming. I am required to use the power function for one of my programs and keep getting the error message. Below is my program [CODE] 1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 5 int main(){ 6 7 //Declare and …

Member Avatar for adcodingmaster
0
137