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.

Messages

  Messages Help
Advanced
Messages 68876 - 68905 of 68905   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
68876
... I've never done any .NET programming with VC++ but used as a native C++ compiler for Windows and/or console programs it's quite good (excellent debugger). ...
Brett McCoy
smartandkewl
Offline Send Email
Nov 28, 2008
3:45 pm
68877
... From where do people get this ancient compiler? Do they download it from a museum? -- John Gaughan...
John Gaughan
john23874
Offline Send Email
Nov 28, 2008
10:59 pm
68878
... What you are looking for is a class that has only static methods. However, the bigger question is why are you using a class when you can just make...
John Gaughan
john23874
Offline Send Email
Nov 28, 2008
11:33 pm
68879
Hello, My makefile skills are horrible as it is, but, I'm looking for some pointers. I've got a folder called "core" which holds the core library components. ...
Tyler Littlefield
tyler@...
Send Email
Nov 29, 2008
2:15 am
68880
... The typical way is to create a fake target and set all of your executables a dependency: all: exe1 exe2 exe3 exe1: obj1.o obj2.o exe2: obj1.o obj3.o exe3:...
Brett McCoy
smartandkewl
Offline Send Email
Nov 29, 2008
2:25 am
68881
... Time you updated then... <http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Option-Index.html#Option- Index> % gcc --version gcc.exe (GCC) 4.3.2 Copyright (C)...
peternilsson42
Offline Send Email
Nov 29, 2008
2:39 am
68882
... Look to the internet. Whilst there are common elements, makefile formats can and do differ between different implementations. ... The doco, man make, F1,...
peternilsson42
Offline Send Email
Nov 29, 2008
2:41 am
68883
... <snip> ... Please don't start a new thread by replying to an existing totally unrelated thread. At the very least, remove the other post from yours! -- ...
peternilsson42
Offline Send Email
Nov 29, 2008
2:44 am
68884
... I wasn't aware email wasn't internet based, maybe I should go back to square one and learn about email. Thanks, Tyler Littlefield email:...
Tyler Littlefield
tyler@...
Send Email
Nov 29, 2008
2:51 am
68885
hello bret, thanks, that's pretty much what I needed. I hadn't thought of doing the dependencies like that, but it helps quite a bit. Rather than making the...
Tyler Littlefield
tyler@...
Send Email
Nov 29, 2008
2:52 am
68886
... The Gnu 'make' manual is a good starting point, even if you're not using Gnu 'make': http://www.gnu.org/software/make/manual/ There's also an O'Reilly...
David Hamill
dc_hamill
Offline Send Email
Nov 29, 2008
10:27 am
68887
thanks, I'll take a look. I've managed to cobble something together, but it's not much. Thanks, Tyler Littlefield email: tyler@... web: tysdomain-com...
Tyler Littlefield
tyler@...
Send Email
Nov 29, 2008
1:27 pm
68888
"<Sam> Coding in C is like sending a 3 year old to do groceries. You gotta tell them exactly what you want or you'll end up with a cupboard full of pop tarts...
andrew clarke
zoomosis
Offline Send Email
Nov 30, 2008
10:19 am
68889
Hello Guys, Can anyone help out on how to take in 3 character input for execution in a program...! *printf("Enter the type of bread you want to make: \n"); ...
Oludayo Oguntoyinbo
djoguns
Offline Send Email
Nov 30, 2008
1:09 pm
68890
... I would use fgets() to read in a line of input, then use sscanf() on the line. #include <stdio.h> int main(void) { char buf[100], type, size, baking_type; ...
John Matthews
johnmatthews...
Offline Send Email
Nov 30, 2008
4:45 pm
68891
... But couldn't you say that about programming computers in general? Ok, I'm well aware that it's easier to make a mess in C than in some (most?) other...
John Matthews
johnmatthews...
Offline Send Email
Nov 30, 2008
4:54 pm
68892
... Thank you....
Pedro Izecksohn
izecksohn
Offline Send Email
Dec 1, 2008
3:29 am
68893
Enter your vote today! A new poll has been created for the c-prog group: Is US Patent 7028023 valid? For those who do not know what is it about: ...
c-prog@yahoogroups.com
Send Email
Dec 1, 2008
4:05 am
68894
I never knew that there was a patent for a linked list ... From: c-prog@yahoogroups.com <c-prog@yahoogroups.com> Subject: [c-prog] New poll for c-prog To:...
Robert Ryan
bobzcplpl
Offline Send Email
Dec 1, 2008
7:45 am
68895
... The US Patent Office appears to have been broken for some time. -- PJH http://shabbleland.myminicity.com/tra...
Paul Herring
shabble
Offline Send Email
Dec 1, 2008
7:52 am
68896
... ...and you could also use a function to simplify: #include <stdio.h> static char get_reply(const char *prompt) { char buf[100], c; printf("Enter %s:\n",...
John Matthews
johnmatthews...
Offline Send Email
Dec 1, 2008
9:06 am
68897
... It's clearly invalid, due to the existence of huge amounts of prior art. If corporations want to waste their money on patenting things like this, let them...
David Hamill
dc_hamill
Offline Send Email
Dec 1, 2008
9:53 am
68898
Dear all, I allocated memory to one array, which stores data from one file, and I made a condition that if one data being read using fscanf() is larger than...
Titi Anggono
tiang_ono
Offline Send Email
Dec 2, 2008
4:38 am
68899
... It's a good idea to use fgets(), where you can specify a maximum number of characters to read. If you malloc() 42 bytes then tell fgets() to read 42...
andrew clarke
zoomosis
Offline Send Email
Dec 2, 2008
5:09 am
68900
... Is that OS/environment-dependent?...
John Matthews
johnmatthews...
Offline Send Email
Dec 2, 2008
6:28 am
68901
... In the case of fgets(), a terminating '\0' is helpfully included in the count, unlike most string functions where a string of n chars needs storage of n+1...
David Hamill
dc_hamill
Offline Send Email
Dec 2, 2008
9:33 am
68902
... And don't forget that fgets() adds a '\n' to the end of the string if there are n-2 or less characters in the input. Actually I think what the OP was...
John Matthews
johnmatthews...
Offline Send Email
Dec 2, 2008
1:35 pm
68903
Hi, STL map's comparison functor expects one that returns a bool. struct strCmp { bool operator()( const char* s1, const char* s2 ) const { return strcmp( s1,...
Indika Bandara Udaged...
indikabandara19
Online Now Send Email
Dec 2, 2008
4:11 pm
68904
... Are you trying to read a whole file? If so, why? ... Only if it is dynamically allocated. Since you haven't shown any code, most of the replies have...
peternilsson42
Offline Send Email
Dec 2, 2008
10:32 pm
68905
[mod pn-- <http://www.google.com.au/search?q=how+to+check+a+pixel+is+either+inside+or+outside+or+on+a+polygon>] dear friends                 ...
maya maya
selfmaya
Offline Send Email
Dec 2, 2008
10:38 pm
Messages 68876 - 68905 of 68905   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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