stion, although
it doesn't seem to be GCC related.
Please do not send any follow ups to gcc@gcc.gnu.org
On Fri, 2013-08-02 at 18:25 -0700, eric lin wrote:
>
> I have tried to copy QuickSort c++ programs:
> ---
> #include
> using nam
I have tried to copy QuickSort c++ programs:
---
#include
using namespace std;
class Element
{
public:
int getKey() const { return key;};
void setKey(int k) { key=k;};
private:
int key;
// other fields
};
#define InterChange(list, i, j) t
fixed_test
are copied from a book
practical c++ programming
so plz help
sincerely, Eric Lin, in USA-US citizen
fixed_pt.cpp
Description: fixed_pt.cpp
fixed_pt.h
Description: fixed_pt.h
fixed_test.cpp
Description: fixed_test.cpp
dear alex:
thanks your email, but
(1) your suggestion is not work, it still get same error
(2) g++(4.4.3) have no right to modify the name of my variable, it is "string"
that I use(or Bjarne Stroustrup use)
not "String" that gcc/g++4.4.3 show on the compiler error
(3) if I put std::string re
Dear gcc/g++ programers:
that is in the book "Programming-Principle and practice using C++" 4th Ed.,
Chapter 12, display model
I can not compile first example chapter.12.3
or simplestchapter.12.7.2
by fltk 1.1.10 or 1.3 or 2.0
they all show name ambiguous "Window", since it
/usr/include/c++/4.4/backward/backward_warning.h:28:2: warning:
#warning This file includes at least one deprecated or antiquated
header which may be removed without further notice at a future date.
Please use a non-deprecated interface with equivalent functionality
instead. For a listing of replac
dear gcc programers:
I tried to use math lib's power by the following simple code
(actually I copy from
http://www.java2s.com/Code/C/Math/Howtousepow.htm
that site show this code should run, but I get compiler error about not define
pow, please help, Eric, in 4.4.3
-
e...@
dear linux(or g++) user/programer with c++: my name is eric, when I use most
current g++ 4.3.3 on ubuntu to test 2 simple c++ programs, one have compiler
error,
// formore.cpp -- more looping with for
#include
using namespace std;
const int ArSize = 16; // example of exte