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
1 Commented Post
0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for <M/>

Think of someone's career/job and think of what will make you go "wait, what?"... Basically an irony is being built (i don't think irony is the best word). Anyways: Here is an example: A vet owning a slaughter house. Do you guys get it? Anyways, that was the first one. …

Member Avatar for advent_geek
0
382
Member Avatar for Hector_2

This is supposed to used quick sort using the header "arrayListType.h using quick sort and get the numbers entered smallest to largest but I'm not sure on how to do it. Can I please get some help? #include <iostream> #include "arrayListType.h" #include <cstdlib> using namespace std; void printList(arrayListType<int>& list); void …

Member Avatar for rubberman
0
415
Member Avatar for KevinVernon

Post the **names** of your **favorite artist / band** and **Songs** of your **favorite artist / band** with the same letter as the 1st alphabet of name of The Band or Artist. My favourite band is "**Linkin Park**" and the song start with letter "L" is "**Lost In The Echo**"

Member Avatar for <M/>
0
1K
Member Avatar for Hector_2

I can't get it to compile. I've tried so many things. The errors |29|error: expected unqualified-id before '{' token| |266|error: expected '}' at end of input| |266|error: expected unqualified-id at end of input| ||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===| Here is the code` #include …

Member Avatar for Hector_2
0
282
Member Avatar for Hector_2

The code isn't displaying and then reversing entered numbers. reverse.cpp // // #include <cstdlib> #include <iostream> #include "linkedStack.h" using namespace std; int main() { linkedStackType<int> stack1; linkedStackType<int> stack2; cout << ""; cout << "output your name\n\n"; int number = 0; // AUSE LINKED STACKS // cout << "Enter first number …

Member Avatar for Hector_2
0
332
Member Avatar for Hector_2

I can't get the code to display in an ordered list. // Chapter 5 - Homework Assignment #include <iostream> #include <cstdlib> using namespace std; // // DECLARE FUNCTION HEADER FOR // CLASS ListNode class ListNode { public: ListNode(double v, ListNode *p) { value = v; next = p; } private: …

Member Avatar for Hector_2
0
190