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...
Show off your group to the world. Share a photo of your group with us.

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 51893 - 51922 of 71514   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
51893
... It appears that C-prog is not in-vulnerable to the latest virus going around. 2 things: 1) If you actually got a file attached to the email I'm replying...
shabble
Offline Send Email
Feb 1, 2006
9:10 am
51894
Hello everybod .The code isn't compiled.I can't understand.Help me #include<iostream> #include<conio.h> #include<string.h> using namespace std; class Token{ ...
kou_cihan
Offline Send Email
Feb 1, 2006
9:37 am
51895 er.vishalmahajan
vishal_0722
Offline Send Email
Feb 1, 2006
9:37 am
51896
... Then the OP should be using their OS's API or a ready-made wheel instead of reinventing one for uninstalling (http://support.microsoft.com/?id=140570 or...
Paul Herring
shabble
Offline Send Email
Feb 1, 2006
9:52 am
51897
... [snip] Operator::getoperator() needs to return a value. number::getnumber() needs to return a value. number::getoperator() needs to be defined. main should...
Paul Herring
shabble
Offline Send Email
Feb 1, 2006
10:09 am
51898
how are you? i send the details. OK ?...
er.vishalmahajan
vishal_0722
Offline Send Email
Feb 1, 2006
10:13 am
51899
Hi....All, How can find loop in linked list? That means for example 5th node pointing to 2nd Node in linked list....but it will be in optimization process.......
Venkateswarlu p
venkip17
Offline Send Email
Feb 1, 2006
10:22 am
51900
hello people I had to implement a doubly linked list which inserts 10 elements initially in the ascending order n every further insertion is made at the middle...
vermilions s
vermilions276
Offline Send Email
Feb 1, 2006
10:23 am
51901
Respected Sir I am final year student of B.eng (Hons) Electrical & electronic engineering. As part of final year program I have taken FUZZY LOGIC BASED SERVO...
asif siddiqui
asif_engg2003
Offline Send Email
Feb 1, 2006
10:24 am
51902
... Have two pointers. Step through your linked list. On each step, one pointer should step one record. The other pointer should step two records. Keep...
Paul Herring
shabble
Offline Send Email
Feb 1, 2006
10:45 am
51903
Reply Embedded........ -Saurabh ... temperory local variable "nw" ... you returned pointer to nw ... "nw" destroyed after getnode is returned rather thean this...
Saurabh Jhamb
saurabhjhamb
Offline Send Email
Feb 1, 2006
10:57 am
51904
... me ... equivilant ... Why do I have to define number::getoperator and Operator::getnumber? I defined only virtual function in token ,it doesn't have to...
kou_cihan
Offline Send Email
Feb 1, 2006
11:30 am
51905
... stat() asks the file system for the size of the file; it doesn't read the file to determine its size. So your approach looks correct to me. The only change...
Conrad Halling
chhalling
Offline Send Email
Feb 1, 2006
12:15 pm
51906
Yups, there is another way of doing it , much simpler. fseek(fp, 0, SEEK_END); fileSize = ftell(fp); rewind(fp); I am not seeing my posts on c-prog so ccing...
Saswat Praharaj
saswat_praharaj
Online Now Send Email
Feb 1, 2006
12:34 pm
51907
... Because there is no non-pure virtual version of those functions otherwise. All member functions must be define somewhere in the hierarchy, and since number...
Paul Herring
shabble
Offline Send Email
Feb 1, 2006
12:54 pm
51908
... ...although the file does have to be opened (and closed), which isn't included in your code....
John Matthews
johnmatthews...
Offline Send Email
Feb 1, 2006
2:24 pm
51909
Thanks.But how will that help?though nw pointer is destroyed ,its contents r passed to the calling function..So i can still have access to the node through the...
vermilions s
vermilions276
Offline Send Email
Feb 1, 2006
3:28 pm
51910
Thanks.But how will that help?though nw pointer is destroyed ,its contents r passed to the calling function..So i can still have access to the node through the...
vermilions s
vermilions276
Offline Send Email
Feb 1, 2006
3:32 pm
51911
... here the next element's llink has to be set to t. i.e. first->llink = NULL first=t; //Insert at first position } ... In case the new element has...
A N Vinay Kumar
vinsalwayswins
Offline Send Email
Feb 1, 2006
4:08 pm
51912
Oh yes the fseek() and ftell() solution will work only on opened files. Thanks for pointing out that. Regds, -Saswat...
Saswat Praharaj
saswat_praharaj
Online Now Send Email
Feb 1, 2006
5:51 pm
51913
hi, I am new in this group. I have installed Dev c++ in my PC. after writing a program if I compile it it is working. and then if I run it then the MS DOS...
Siddhartha
acpsiddhartha
Offline Send Email
Feb 1, 2006
9:14 pm
51914
... Isn't that annoying? Somebody at Microsoft didn't think that through. There are a couple of solutions. One is, instead of double-clicking the icon to run...
Conrad Halling
chhalling
Offline Send Email
Feb 1, 2006
9:27 pm
51915
... You should learn that there is a difference between your development tools and the operating system you're using them on. You should learn how to use both...
peternilsson42
Offline Send Email
Feb 1, 2006
10:55 pm
51916
... Almost. You didn't check the return value of stat, and you should use off_t for file_size; ... Yet worse. ... - fseek-ing to the end of a binary file may...
peternilsson42
Offline Send Email
Feb 1, 2006
10:55 pm
51917
... What do you think Google is for? -- Peter...
peternilsson42
Offline Send Email
Feb 1, 2006
10:55 pm
51918
... True, the object of type pointer is destroyed, but the pointer _value_ it held, and which is passed back, is still valid. ... No. You're comment is like...
peternilsson42
Offline Send Email
Feb 1, 2006
11:00 pm
51919
... I took your code into Visual C++ (2003) and it compiled and ran with no problems. Delete your data file and try again. Where in the running of the ...
Ray Devore
rbdevore2007
Offline Send Email
Feb 2, 2006
4:39 am
51920
hi vishal thanks for reply... Actually i got the solution in Borland C++ builder-6 Everything is readymade there...with readymade ADO components , No need of...
deep_ans
Offline Send Email
Feb 2, 2006
5:07 am
51921
Hi I have some queries regarding gcc compilers. First :- What are gcc compilers. Second:- I am using Visual studio 6.0. Is it a gcc compiler, if yes how can I...
Praveen Kumar
praveenkumar...
Offline Send Email
Feb 2, 2006
5:29 am
51922
hi, GCC compilers are set of compilation tools developed by the GNU community for compiling c/c++ codes over different OS and processors. I dont have much idea...
Pavan Krishnamurthy
dreamz_mentor
Offline Send Email
Feb 2, 2006
5:53 am
Messages 51893 - 51922 of 71514   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