Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for BlackStar

I think this is the right section for this. If not I'm sorry. When I open IE, and go to [url]www.msnbc.com[/url]. I get a window pop up saying "Windows cannot connect to msnbc.com operation aborted" I tried adding *.sitemeter.com to the restriction list. I tried disabling Manage-add ons. It works …

0
52
Member Avatar for BlackStar

Hi, lately my computer began to restart while playing warcraft III: Frozen Throne. When I'm in ladder. The only changes I can think of lately that I did to the computer, was that I updated my video card drivers. A year ago I brought a evga geforce 9800 gtx. Then …

Member Avatar for rch1231
0
92
Member Avatar for Sadikb

Hi, I wanted to find out, which are the best-selling and most useful books on Oracle DBA, Development and applications. I request Daniweb members and other experts to pitch in their opinions with 1> Best Book for the Oracle DBA, 2> Best Book for Oracle developers, 3> Best Book for …

Member Avatar for Lincoln25
0
448
Member Avatar for BlackStar

[ICODE] struct Node{ int n; Node *next; }; struct Some{ Node * ptr; }; int main() { Node *aNode = new Node; Some *aSome; aSome->ptr = aNode; } [/ICODE] Why do I get a Seg Fault here?

Member Avatar for Stinomus
0
218
Member Avatar for BlackStar

if I get this down, then I'll complete my assignment. I want my program to have the ability that whoever is using the program has the ability to control how many customers a restaurant has. Say Pressing C = new customer. And depending on how many times they press c, …

Member Avatar for BlackStar
0
398
Member Avatar for BlackStar

Can I have some idea's as to how to do that? Like say you have a piece of code that created n lists that are linked. Then you ask which node would you like to change the data? How would one do it? My Idea was the node contains N …

Member Avatar for BlackStar
0
494
Member Avatar for BlackStar

from the pointer problem thread. I got this, [ICODE]void is_valid (char& s) { return s=='1' || s=='2'; } void is_submenu(char& m) { return m=='x' || m=='y'; } // then i'm using it in my main. char choice; cout<<"enter your choice"; cin>> choice; if( is_valid(choice) { if(letter == '1') { // …

Member Avatar for BlackStar
0
219
Member Avatar for BlackStar

to do this. A pointer gets created, say Head Would it be better to do this Head = new Node; Head = NULL; or is it better to do this. Head = NULL; Head = new Node;

Member Avatar for BlackStar
0
315
Member Avatar for BlackStar

struct Fast_Food_Business { string name; Fast_Food_Business* head; Fast_Food_business* tail; }; struct cash_registers{ Fast_Food_Business * regist; cash_registers * r; } struct Customer { int n; Customer * h ; // head Customer *t; // tail Fast_Food_Business*next; }; bool menu (const char& number) { return number== '1' || number== '2'; } bool …

Member Avatar for mvmalderen
0
120
Member Avatar for BlackStar

say you have [ICODE]struct Node{ int item; Node *next; } int main() { Node *p; p= new Node; p-> item = 100; p-> next = NULL; }[/ICODE] is there a way to make it that, the p-> item becomes whatever the user inputs?

Member Avatar for BlackStar
0
285
Member Avatar for BlackStar

[ICODE] #include <iostream> #include <cstdlib> using namespace std; struct A { A *B; }; struct C{ C*D; }; int main() { A * Z = new A; C * Y = new C; Z = Y; cin.get(); return 0; } [/ICODE] it says cannot convert Z to Y in assignment.

Member Avatar for NathanOliver
0
97
Member Avatar for BlackStar

Hello everyone I'm having a little difficulty, hopefully you guys can help or point me to the right direction. I'm trying to get a pointer from a class point to another pointer from another class. Naturally it doesn't work because the assignment operator doesn't allow us to do this so …

Member Avatar for BlackStar
0
237
Member Avatar for BlackStar

I'm having a problem with cin.get(). I'm prohibiting the user, that he can only enter 5 keys. and each key does something, like a MENU. Press 1, if you want this, etc. [ICODE]char choice[5]; cout<<"ENTER YOUR CHOICE"<<endl; cin.get( choice, 5); switch (choice)[/ICODE] Okay, when I run this, the compiler gives …

Member Avatar for Narue
0
114