5 Solved Topics

Remove Filter
Member Avatar for Sturm

For homework I'm apparently supposed to implement some functions defined in [icode] <algorithm> [/icode]. So this is what I have so far: [CODE=c++]template <class I> bool m_equal( I b, I e, I b2 ) { for ( ; b != e && b == b2; b++, b2++ ); return b …

Member Avatar for Sturm
0
127
Member Avatar for Sturm

2 Im am just wondering how to change the frame color of a table. The following solution works but isn't very pretty. My test code is as follows. [code=html] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTNL 4.01//END" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <style> body { background-color: black ; color: white; } </style> <title> test …

Member Avatar for Sturm
0
152
Member Avatar for Sturm

Hello, I am doing a homework assignment and need a bit of help. I have to overload the prefix ++, postfix ++ operator, and the = operator for a circle class. Heres the code I have so far: [code] #include<iostream> using namespace std; class Circle { public: Circle(); Circle(int n); …

Member Avatar for Sturm
0
213
Member Avatar for Sturm
Member Avatar for Sturm

I am new to linux and I just installed ubuntu on my hp dv6000t laptop. I try to download the nvidia-glx but when I try to install it with the command "sudo nvidia-glx-config enable" command it returns the following: Error: unable to load nvidia kernel driver! Be sure to have …

Member Avatar for John A
0
223

The End.