Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 37410 - 37439 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
37410
'const a' implicitly means 'const int a' in C. Vijay ... C++. ... that is ... privileged ... for the ... intended ... If you ... immediately by...
vijayprince
Offline Send Email
Jun 1, 2004
7:05 am
37411
[..]> ... In C89, an int is implict. Another differece that popped in my mind is: 6. Global variables can be defined more than once in C, not in C++. int a;...
Vijay Kumar R Zanvar
vijoeyz
Offline Send Email
Jun 1, 2004
7:08 am
37412
... From: "vijayprince" <vijay.x.prince@...> To: <c-prog@yahoogroups.com> Sent: Tuesday, June 01, 2004 12:34 PM Subject: [c-prog] Re: doubt in c ... In...
Vijay Kumar R Zanvar
vijoeyz
Offline Send Email
Jun 1, 2004
7:11 am
37413
Hi, May I know whether I can call a thread function four times with different inputs and run at the same time? If yes, may I know how to do it? What do I need...
Frederick
camelfredcamel
Offline Send Email
Jun 1, 2004
7:26 am
37414
Hello, friends! Do you need to develop software or website? Post your project for free and get quotes! If you are owner of software company or freelancer this...
avheanan
Offline Send Email
Jun 1, 2004
12:26 pm
37415
===== Ankur Vachhani http://cc.domaindlx.com/ankur cell : 9422563974 ________________________________________________________________________ Yahoo! India...
ankur vachhani
vachhani_ankur
Offline Send Email
Jun 1, 2004
1:01 pm
37416
If all you want to do is to create a temporary file, use library function tmpfile(). Depends on your OS and the compiler, there might exist an OS specific API...
Shyan Lam
sflam108
Offline Send Email
Jun 1, 2004
3:50 pm
37417
'sizeof' returns the size of its operand, which can be a type or an expression. If the operand is a type, a parenthesis is required. For expression, the ...
Shyan Lam
sflam108
Offline Send Email
Jun 1, 2004
3:51 pm
37418
Hello ..Hope all will be fine... I'm Ahmad & i want friendship with you..do u like friendship with me??? if u like then call me right now on the Numbers Given...
lovely tahir
lovelytahir4u7
Offline Send Email
Jun 1, 2004
5:56 pm
37419
... Of course, as long as you don't use 'static' local variables and you are careful when accessing the same data to use critical sections, mutexes or some...
Thomas J. Hruska
shininglightpro
Offline Send Email
Jun 1, 2004
11:24 pm
37420
no ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There oughta be a law"...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jun 2, 2004
12:28 am
37421
... All base class functions are considered to be "final" automatically. If you create ain instance of a base class pointer which points to a derived class...
banaticus
Offline Send Email
Jun 2, 2004
1:16 am
37422
... More importantly, HOW can it be a function when the operand is a type, not an expression. Even expressions subject to integral promotion are problematic. ...
peternilsson42
Offline Send Email
Jun 2, 2004
1:55 am
37423
In a program i am working on the options alow the user to select a default directory but currently they have to type it in by hand i am trying to create a...
dark_owl999
Offline Send Email
Jun 2, 2004
2:16 am
37424
Another option that you can use is the CFile or CStdioFile with this you can just use ErrorReport = Cfile.OPen(what ever); then the errorreport will catch the...
dark_owl999
Offline Send Email
Jun 2, 2004
2:27 am
37425 thavvaj
Offline Send Email
Jun 2, 2004
5:02 am
37426
Hi all, I've got a doubt.One of my friend was asked in an interview... 1) Why is sizeof an operator but not a function? 2) Write string reversal with out using...
thavvaj
Offline Send Email
Jun 2, 2004
5:02 am
37427
class Number { public: Number& operator++ (); // prefix ++ Number operator++ (int); // postfix ++ }; Is it always necessary to return by reference for...
Srikanth B. Reddy
bsreddys
Offline Send Email
Jun 2, 2004
5:30 am
37428
... From: "Srikanth B. Reddy" <bsreddy@...> To: <c-prog@yahoogroups.com> Sent: Wednesday, June 02, 2004 10:57 AM Subject: [c-prog] prefix operator ... ...
Vijay Kumar R Zanvar
vijoeyz
Offline Send Email
Jun 2, 2004
5:40 am
37429
It's not necessary, but why wouldn't you want to? ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jun 2, 2004
5:46 am
37430
Thanks VAW. I know there are some benifits using return by reference for prefix ++.( May be runtime efficiency) All I was interested is whether it is a...
Srikanth B. Reddy
bsreddys
Offline Send Email
Jun 2, 2004
6:05 am
37431
... Why 'b'? IIRC, it has no effect. ... fopen can return a NULL pointer for various error conditions. File not existing is just one of them. The closest we...
Annamalai Guruswami
anna7sept
Offline Send Email
Jun 2, 2004
6:06 am
37432
In C & C++ ... Can you tell me why this difference is required? Regards, Vijay ... expression, the ... understood so ... have. ... in c++....
vijayprince
Offline Send Email
Jun 2, 2004
6:12 am
37433
well, it's supposed to be an l-value afterwards, and most people writing C++ will expect it to be so, doing otherwise will cause consternation among your...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jun 2, 2004
6:29 am
37434
... To calculate the size of an object, we need the type information. This type information is available only at compile time. At the end of the compilation...
Annamalai Guruswami
anna7sept
Offline Send Email
Jun 2, 2004
6:38 am
37435
Long back I had asked a question about the implementation of sizeof operator in C. I did not get any reply from anyone. Can anyone just give me any rough idea...
Praharaj, Saswat (Sas...
spraharaj@...
Send Email
Jun 2, 2004
6:39 am
37436
... From: "Annamalai Guruswami" <annamalai.gurusami@...> To: <c-prog@yahoogroups.com> Sent: Wednesday, June 02, 2004 11:46 AM Subject: Re:...
Vijay Kumar R Zanvar
vijoeyz
Offline Send Email
Jun 2, 2004
6:43 am
37437
... From: "Praharaj, Saswat (Saswat)" <spraharaj@...> To: <c-prog@yahoogroups.com> Sent: Wednesday, June 02, 2004 12:07 PM Subject: [c-prog] "sizeof"...
Vijay Kumar R Zanvar
vijoeyz
Offline Send Email
Jun 2, 2004
6:47 am
37438
nope and pointless to so do, the compiler already HAS a sizeof operator ... [deleted] Victor A. Wagner Jr. http://rudbek.com The five most dangerous words...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jun 2, 2004
7:12 am
37439
Hello! After 48 hours this new group for posting offshore projects has 80 members. And there are already some messages! If you are company owner or freelancer...
Av HeAnan
avheanan
Offline Send Email
Jun 2, 2004
8:31 am
Messages 37410 - 37439 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help