Click here to Skip to main content
15,905,874 members

Comments by Donald Hume (Top 12 by date)

Donald Hume 4-Aug-11 14:01pm View    
Most certainly, Espen. I've started to implement the GMP library as it has all the functionality I would need. There was so much code that the thought of trying to migrate to GNU bc seemed overwhelming. The GMP library seems to be a great place for me to start.

Thanks a lot I appreciate your help.
Donald Hume 3-Aug-11 20:26pm View    
Woah woah woah, I'm not sure about all of that haha. As I said before, I do appreciate your response.
Donald Hume 3-Aug-11 19:04pm View    
I think I would have just preferred you left it to just the first and last sentence. From a scholarly view your response seemed unnecessarily abrasive (my 1) as I'm not sure what you can infer about my education or my degree (relevant to programming or not).

To be honest I didn't read through the whole article so I will be sure to do that. *sigh* I appreciate your response though, I think.
Donald Hume 26-Jul-11 13:12pm View    
I do believe this is a well thought out and formulated response. Thank you so much for your time Stefan.
Donald Hume 26-Jul-11 11:38am View    
So this is all that's at the top of my header:
#include <iostream>
using namespace std;

#define PI 3.14159265

I tried using include guards as suggested by SA:
#ifndef IOSTREAM
#include lessthan iostream greaterthan

using namespace std;
#define IOSTREAM


#endif


#ifndef PI
#define PI 3.14159265
#endif

But I seem to be throwing the same linker errors.