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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 34717 - 34746 of 71512   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
34717
Ok. I looked at it. I can tell you're not following any coding standards I know! You duplicate definitions in a switch { You have some kind of error in mov { ...
C+Mark
mroth26
Offline Send Email
Feb 1, 2004
12:13 pm
34718
Make Your Opinions Count! Influence decision makers (For Indian Citizens Only) Looking for a source of extra income? There is a huge demand for everyday...
Anil
anil_jupiter
Offline Send Email
Feb 1, 2004
12:24 pm
34719
Make Your Opinions Count! Influence decision makers (For Indian Citizens Only) Looking for a source of extra income? There is a huge demand for everyday...
Anil
anil_jupiter
Offline Send Email
Feb 1, 2004
12:37 pm
34720
Make Your Opinions Count! Influence decision makers (For Indian Citizens Only) Looking for a source of extra income? There is a huge demand for everyday...
Anil
anil_jupiter
Offline Send Email
Feb 1, 2004
12:42 pm
34721
I Know It is't up to standards, I'm only 13.I tought myself how to program in C\C++....
Fishin155@...
fishin155
Offline Send Email
Feb 1, 2004
2:55 pm
34722
Dear All Members, I used MFC to make my program(related to image processing). There were some questions I would like to ask you: 1.How to display the...
tranthotuan
Offline Send Email
Feb 1, 2004
5:01 pm
34723
I'm going though "Sams teach yourself C in 21 days." I'm using - [gravity:~]$ gcc -v Reading specs from /usr/lib/gcc-lib/i386-linux/2.95.4/specs gcc version...
Kenton Brede
kbrede1
Offline Send Email
Feb 1, 2004
5:09 pm
34724
Hello Kenton, Sunday, February 01, 2004, 6:08:14 PM, you wrote: KB> I'm going though "Sams teach yourself C in 21 days." I'm using - KB> [gravity:~]$ gcc -v ...
Aivaras
aivajuzv
Offline Send Email
Feb 1, 2004
5:26 pm
34725
try returning a value (int) ... __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! ...
Steve Kaczmarczyk
stevek2
Offline Send Email
Feb 1, 2004
5:27 pm
34726
On Sun, Feb 01, 2004 at 09:27:21AM -0800, Steve Kaczmarczyk (stevek2@...) wrote: See below - ... OK, I added "return 0;" to the bottom of "main()" which...
Kenton Brede
kbrede1
Offline Send Email
Feb 1, 2004
5:45 pm
34727
KB>> ###################################### KB>> #include <stdio.h> KB>> int age = 19; KB>> int main() KB>> { KB>> if(age < 18) KB>>...
Tamas Marki
tamas_m
Offline Send Email
Feb 1, 2004
6:29 pm
34728
Hi group, I am a newbie to c++ programming.Please help me regarding creating library file in cpp. actually I am using bloodshed devc++ version 2.0 for windows....
mpoornakumar1
Offline Send Email
Feb 1, 2004
6:53 pm
34729
Hi, I am working on a program for my operating systems class. Our project was to design a shell similar to bash on UNIX, which will run on UNIX. I have every...
arow69d
Offline Send Email
Feb 1, 2004
9:22 pm
34730
hi, Well, I believe if the user says: $ programname > file.txt the output will automatically go to that file. Try it on any other program you have; and see if...
Site Resources
siteresource...
Offline Send Email
Feb 1, 2004
9:29 pm
34731
That will work from the Bash($) prompt, but I want the user to be able to do this from within my program shell. Say my prompt is "<PROMPT>". Then I want the...
arow69d
Offline Send Email
Feb 1, 2004
9:38 pm
34732
hi, Ok. If you are using C++, then it is very simple to write to a file without changing too much syntax. Let's say that the file name is in the variable...
Site Resources
siteresource...
Offline Send Email
Feb 1, 2004
9:47 pm
34733
... Maybe something like this. #include <stdio.h> #include <stdlib.h> #include <time.h> struct sType { int value; size_t count; }; int...
Dave Sinkula
dave_sinkula
Offline Send Email
Feb 1, 2004
9:56 pm
34734
Reply to: smitel2003@..., who wrote ... You could keep a record of which numbers you have already counted. First, declare an array and an index into the...
abram10@...
abrammagner
Offline Send Email
Feb 2, 2004
2:26 am
34735
... I don't believe GCC have got around to formally listing all their warnings. [But I could be wrong.] That said, gcc's warnings are considerably better than...
Peter Nilsson
peternilsson42
Offline Send Email
Feb 2, 2004
2:32 am
34736
... Excellent! There are any number of ways you can get ahead. One is to check forward chapters in the reference text. Another is to check course notes from...
Peter Nilsson
peternilsson42
Offline Send Email
Feb 2, 2004
2:33 am
34737
... I prefer to avoid gotos as used in this way to re-enter a loop. I don't mind breaking out of nested loops this way though. Anyway, an alternative might...
Peter Nilsson
peternilsson42
Offline Send Email
Feb 2, 2004
2:33 am
34738
For the question , to return true if the vector<double> are in ascending order and fall otherwise , the following statement : bool isAscending(vector<double>v)...
AhmadAshiry Harun
ahmadashiry@...
Send Email
Feb 2, 2004
3:26 am
34739
... Wow, thank you for this great explanation. Kent -- "Efficiency is intelligent laziness." -David Dunham...
Kenton Brede
kbrede1
Offline Send Email
Feb 2, 2004
3:28 am
34740
Thanks ! Good to know the problem was not with the question :O) Just curious as to why you find Solaris, with a lot of quirks. I have version 8.0 and its...
triviagenius
Offline Send Email
Feb 2, 2004
3:35 am
34741
Why do I get two different answers? I don't understand. #include <iostream> using namespace std; int main() { double a, b, c, d; a = 9 / 4; cout << a << endl; ...
jjames010
Offline Send Email
Feb 2, 2004
3:43 am
34742
... 'a' is calculated with integer math, 'd' is calculated with floating-point math....
Dave Sinkula
dave_sinkula
Offline Send Email
Feb 2, 2004
3:56 am
34743
... This is because 9 / 4 are integers so the demical is cut off before it is assigned to 'a' and when b / c are declared floats before division, correct?...
Francesca
kesca13
Offline Send Email
Feb 2, 2004
4:18 am
34744
Francesca ... They were declared doubles, not floats, but yes that's correct. Integer division for non-negative values always truncates the decimal places. If...
Peter Nilsson
peternilsson42
Offline Send Email
Feb 2, 2004
5:09 am
34745
Dear listmates, I am trying to find out a way to "easily" search a given file in a directory. I searched the MSDN library but I did not find a simple function ...
Eretz Galil Comm & Te...
paulooliveir...
Offline Send Email
Feb 2, 2004
5:37 am
34746
Hi.. As I can see, the only thing that you want to do is to verify if a file exists on disk.. I think the easiest way to do this is to open the file for...
Hector Maldonado
hamaldonado
Offline Send Email
Feb 2, 2004
6:00 am
Messages 34717 - 34746 of 71512   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