Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
1
Downvoting Members
4
0 Endorsements
Ranked #2K
~11.4K People Reached
PC Specs
Linux, babe!

22 Posted Topics

Member Avatar for tux4life
Member Avatar for Nathan Campos

Humm, is not #include"zlib.h" ? Undefined references came from thinhs not defined in a class like static members nor initialized, constructors missing...

Member Avatar for Nathan Campos
0
494
Member Avatar for ria mishra

First, which distro are you using? Ubuntu, and I think the most of them, automagically mount cd's and pen drives. If not, there's the [B]mount[/B] comand.

Member Avatar for stevehudson
0
423
Member Avatar for syahrizal

[QUOTE=syahrizal;957231] What is your opinion. Thank you...[/QUOTE] About Linux or your website? Linux is great, I do use as main OS.

Member Avatar for syahrizal
0
148
Member Avatar for aebld
Member Avatar for Democles

[code=c++] cout << center (title)<<endl; [/code] Change for: [code=c++] center (title); [/code] And dont't use endl when you need a simple new line, use \n instead.

Member Avatar for Sky Diploma
0
122
Member Avatar for Anpippin

When you uninstall Ubuntu you don't take off the grub. [URL="http://www.cyberciti.biz/faq/linux-how-to-uninstall-grub/"]http://www.cyberciti.biz/faq/linux-how-to-uninstall-grub/[/URL] has some examples. AFAIK, you just need use a Windows XP CD, put in repair mode and use fixboot e fixmbr commands, if I do remember very well.

Member Avatar for caperjack
0
82
Member Avatar for Roguey

How about the std::transform algorithm? [code=cplusplus] #include<iostream> #include<algorithm> #include<string> using namespace std; int main(){ string input; cout<<"Enter a word\n"; getline(cin,input); transform(input.begin(),input.end(),input.begin(),(int(*)(int))tolower); cout<<input<<'\n'; } [/code]

Member Avatar for mrnutty
0
447
Member Avatar for zahidaiub
Member Avatar for esesili

[QUOTE=esesili;947421]I made it static [B]static double get_fee_of_doc();[/B] but it still does not work the error message is [B]error C2597: illegal reference to non-static member 'Doctor::doctor_hour_fee'[/B].Still I did not figure out how to pass fee to other functions. Do you have any idea?[/QUOTE] Because doctor_hour_fee is not static. And if you …

Member Avatar for Ancient Dragon
0
84
Member Avatar for esesili

[URL="http://www.cs.bu.edu/teaching/cpp/inheritance/intro/"]http://www.cs.bu.edu/teaching/cpp/inheritance/intro/[/URL]

Member Avatar for mrnutty
0
164
Member Avatar for quicktpgo
Member Avatar for fictitiousforce

The problem is that check() does not change the value of t, but the value of test. And about references, you've passed one only to constructor, not to check(). This works: [code=cplusplus] #include <iostream> class Test{ protected: int a; public: Test() : a(0) {} void change(int b) { a = …

Member Avatar for Asafe
0
82
Member Avatar for Hawkpath
Member Avatar for JackDurden

Also, you could use [URL="http://www.boost.org/doc/libs/release/libs/ptr_container/doc/ptr_vector.html"]boost[/URL] or [URL="http://www.codeproject.com/KB/stl/ptr_vecto.aspx"]ptr_vector[/URL].

Member Avatar for daviddoria
0
119
Member Avatar for metalclunch

You understand a recursive function but you don't understand its parameters?(n, power - 1)

Member Avatar for metalclunch
0
90
Member Avatar for esesili

What's the deal? It's just a declaration of a constant bool member function that takes as arg a constant reference to a Date object.

Member Avatar for Dave Sinkula
0
73
Member Avatar for kz07

[QUOTE=Ancient Dragon;930237]after the cin line call either toupper() or tolower() then make the test.[/QUOTE] No, to [I]test[/I] use isupper() or islower() .

Member Avatar for SeeTheLite
0
109
Member Avatar for baula
Member Avatar for baula
0
94
Member Avatar for trinity_neo
Member Avatar for minime2100

You could do a tiny interpreter. I think it would cover all requirements.

Member Avatar for Nick Evan
0
132
Member Avatar for DaniWeb4Jim

[URL="http://www.mydigitallife.info/2007/08/16/solution-to-fix-youtube-or-other-embedded-flash-video-no-sound-in-external-websites/"]Try it[/URL] [URL="http://forums.techguy.org/multimedia/550796-simple-fix-youtube-sound-failure.html"] or it.[/URL]

Member Avatar for spike2me
0
124

The End.