comp.lang.c++
  Home FAQ Contact Sign in
comp.lang.c++ only
 
Advanced search
April 2008
motuwethfrsasuw
 123456 14
78910111213 15
14151617181920 16
21222324252627 17
282930     18
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.c++ Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  c++/unix/linux Expert candidate Hurry up ......Apply soon.......         


Author: anjali
Date: Apr 30, 2008 23:30

Hi friends

Hope this mail finds you in cheerful mood.

We are an IT Consultancy and we have our Head Office in Bangalore. We
are having our branch offices in all over India.

We have lots of clients in all over India like YAHOO, GOOGLE, ADITI,
TECHSPAN, TALISMA, SONATA,

SYMPHONY SERVICES, MICROSOFT, FUTURESOFT, FLEXTRONICS,

NESS TECHNOLOGY FLEX SOLUTIONS, ACCENTURE, ANDALE,

ADOBE, BAYPACKETS, BEGANTO, SAMSUNG, LG, ORACLE, SAPIENT etc.,

Note: Candidate should be from primer institute like IIT, REC, BITs
and BHU

Salary wouldn"t be a constrain for the right candidates.

Experience: - 5 to 17 Yrs

C, c+++, UNIX, Linux Expert candidate ……..

Please take time to mail your resume to me as earliest Mention the

Following details in your reply mail

1. Current Salary:

2. Expected Salary

3. Notice period:
Show full article (1.11Kb)
1 Comment
  daemon mode not quite working         


Author: unknown
Date: Apr 30, 2008 15:10

Hi,

I have an application featuring a verbose mode and a daemon mode.
It's working just fine in verbose mode but in daemon mode it doesn't quite
seem to be functioning properly,
I get into Daemon mode with a fork command followed by exit() to be
specific, it looks like:
[C++]
pid = fork();
if (pid < 0)
{
exit(EXIT_FAILURE);
}
else if (pid > 0)
{
exit(EXIT_SUCCESS);
}

umask(0);
Show full article (0.54Kb)
3 Comments
  Career Advice for Information Technology Professionals         


Author: 8675309jl
Date: Apr 30, 2008 13:12

no comments
  std::list pass by reference initialization error         


Author: Ray D.
Date: Apr 30, 2008 12:58

Hey all,

I'm trying to pass a list into a function to edit it but when I
compile using g++ I continue to get the following error:

maintainNeighbors.cpp:104: error: invalid initialization of non-const
reference of type 'std::list >&' from a
temporary of type 'std::list >*'

helpers.cpp:99: error: in passing argument 1 of `void
CheckIfNeighborsHaveSentHello(std::list
>&)'

The function is shown below:

void CheckIfNeighborsHaveSentHello(std::list
&Neighbors)
{
std::list::iterator it;
std::list::iterator LastIt;
struct timeb TimeBuffer;
ftime( &TimeBuffer );
Show full article (1.62Kb)
3 Comments
  Hamilton - Trent Automatic - Cheapest Watch         


Author: jewelry063
Date: Apr 30, 2008 10:17

Hamilton - Trent Automatic - Cheapest Watch

Hamilton - Trent Automatic Link : http://www.watchesprice.net/Hamilton-Trent-Automatic-9147.html
Cheap Watches Home : http://www.watchesprice.net/
Lower Price Hamilton Brands : http://www.watchesprice.net/Hamilton-Watches.html

Hamilton - Trent Automatic --- one of best selling watches, it is
crafted in high quality Watches.

Hamilton - Trent Automatic Description:

Hamilton - Trent Automatic - Scratchproof Sapphire Crystal - Stainless
Steel Case - Automatic Movement - Water Resistant 30M - 19 mm wide
Brown Leather Strap

Hamilton - Trent Automatic Details:

Brand: Hamilton

The Same Hamilton Series :

Hamilton - Trent Quartz Chrono :
http://www.watchesprice.net/Hamilton-Trent-Quartz-Chrono-9148.html

Hamilton Men's Trent watch #H30410551 :
http://www.watchesprice.net/Hamilton-Mens-Trent-watch-H30410551-9149.html

Hamilton Men's Trent watch #H30411135 :
http://www.watchesprice.net/Hamilton-Mens-Trent-watch-H30411135-9150.html
Show full article (1.58Kb)
no comments
  what do i need to implement data structures         


Author: victor.herasme
Date: Apr 30, 2008 09:40

Hi,

I am a beginner (a civil engineer who needs to know programming) and
i need to know what specific subjects i need to know in order to start
using/programming/creating data structures. I have Deitel's book for
example and i want to know if i have to read the 1200 pages before i
begin. It is very important for me to start as soon as possible. all
suggestions appreciated. Thanks,

victor
6 Comments
  ===Welcome to comp.lang.c++! Read this first.         


Author: Shiva
Date: Apr 30, 2008 09:30

Welcome to comp.lang.c++! Read this first.

This post is intended to give the new reader an introduction to reading
and posting in this newsgroup. We respectfully request that you read
all the way through this post, as it helps make for a more pleasant
and useful group for everyone.

First of all, please keep in mind that comp.lang.c++ is a group for discussion
of general issues of the C++ programming language, as defined by the ANSI/ISO
language standard. If you have a problem that is specific to a particular system
or compiler, you are much more likely to get complete and accurate answers in a
group that specializes in your platform. A listing of some newsgroups is given
at the end of this post.

The FAQ (Frequently Asked Question) list has a wealth of information for
both the new and veteran C++ programmer. No matter what your experience
level, you are encouraged to read the entire list, if only to familiarize
yourself with what answers are available to minimize redundant replies.
The comp.lang.c++ FAQ is available at http://www.parashift.com/c++-faq-lite/

If the FAQ list does not help, then many regular readers of this group
are happy to assist with problems of standard C++. We have only a few
requests that we ask be adhered to, for the benefit of all:
Show full article (4.94Kb)
4 Comments
  off_the_end iterator to vector::erase() function         


Author: subramanian100in
Date: Apr 30, 2008 09:23

Consider
vector v;

If we call,

v.erase(v.end())

this invokes undefined behaviour.

But, if we call

v.erase(v.begin(), v.end())
or
v.erase(v.end(), v.end())

will these last two calls invoke undefined behaviour ? Why I am asking
is that v.clear() on an empty vector is valid - it does nothing.
v.clear() is equivalent to v.erase(v.begin(), v.end()) which in turn
is equal to v.erase(v.end(), v.end()) when 'v' is empty. Am I
correct ?

Kindly clarify.

Thanks
V.Subramanian
3 Comments
  extraction operator         


Author: Taras_96
Date: Apr 30, 2008 06:21

Hi all,

Jesse Liberty writes:

"cin.get() >>myVarOne >> myVarTwo; // illegal

The return value of (cin.get() >> myVarOne) is an integer, not an
iostream object."

(http://newdata.box.sk/bx/c/htm/ch16.htm)

I would think that that the reason why this wouldn't work is because
cin.get() returns an int, not because (cin.get() >> mVarOne) is an
integer...

Anyone agree?

Taras
5 Comments
  new free fiction         


Author: mickey333
Date: Apr 30, 2008 06:08

no comments
 
1 2 3 4 5 6 7 8 9