|
(Job) - C++ Programmer - NYC, NY - with great client Hi This is my direct-client opening for C++ Programmer - NYC, NY. This is a Permanent position. The salary is 90 125K. Our client is seeking experienced C++ Programmer/Analysts to assist in developing state of the art online trading and risk management software. The successful candidate must have strong C++... 19 Jun 2008 01:11
question to (most frequent value in a vector)-answer Hi, Daniel T. kindly posted me this snippet. Unfortunately it causes a: Templates must be a class or a function (Borland error) expected nested-name-specifier before 'iterator_traits' (GNU g++ error) so what is the STL replacement for this code? ---------------------------------------------------- templa... 19 Jun 2008 01:11
template problem Hello. I have to covert some code. Now the compiler moans about the template function but why? Template parameter struct caseless is correct, struct char_traits<caseless> looks good, but the empty template <> irritates me. I could not find any books on this. /Source/Grand Central Pro/GrandCentral/Develop/Mac/XR... 19 Jun 2008 01:11
most frequent value in a vector Hi, i need a function hat returns the most common value of a vector. {1,1,1,1,2,2,2,3,4,4,4,4,4,4,4,5,5} => 4 {1,2,2,3,4,5,5,6,7} => 2 the first maximum I need it for different datatypes int,double... so a template class would be the best but i don't know how to start? Are there any free statistical templates a... 19 Jun 2008 01:11
Questions compiled over the last 5 years I know there is a FAQ section but after squeezing stuff from various sources over the years. http://concentratedlemonjuice.blogspot.com/2008/06/about-c-puzzles-on-my-blog.html ... 19 Jun 2008 01:11
print line 3 of a file when current line is 7 Hi, I need to find a pattern in a file, once I find that pattern I need to print 3 lines before to the current line containing the pattern. Please help me how to solve this problem in c++. I am using getline() but not getting any back pointer for prrevious lines. Thanks ... 19 Jun 2008 01:11
Deleting Derived Class Instance Doesn't Call Base's Destructor. Hi Folks: Developing on XP Home, VS 2008, C++. If I delete a derived class, which has a destructor, shouldn't the destructor of base class be called automatically? The derived class's destructor is being called, but the base class's destructor isn't. Do I have to delete the base class from the ... 19 Jun 2008 01:11
size of class having members as pointers to other class objects Hi, I want to find out the size of a class some of whose members are pointer to objects of other class and so on I tried to compute size by adding member by member but it is turning out to be a lengthy work, is there any way to do that. Thanks in advance ... 19 Jun 2008 01:11
Why cant a derived class not access protected member of the base class of another class of same type? Hi, I came across a case which I do not understand and for which I cannot find a good explaination in Stroustoup's "The C++ Programming Language". On page 754 (24.3.7.4 Encapsulation) there is a litttle example that shows how one instance of class List can access a private member of another instance of clas... 19 Jun 2008 01:11
copy file Hey, its a function which copies file "f_from" to "f_to". Would you please tell me any condition when this function fail? Assuming that I have proper file permissions... I want to apply best buffering and fastest work, thanks for any ideas. FILE *f_from; FILE *f_to; char buff[4096]; int r=0, s; while ( !f... 19 Jun 2008 01:11 |