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 44331 - 44360 of 71514   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
44331
andre just be online Andre <andre.2995@...> wrote:What is your question? ... To unsubscribe, send a blank message to...
melo_fci
Offline Send Email
May 1, 2005
9:57 am
44332
Cheeyimgoh, Yes, you can make your pointer to char a char array. If you do not make it an array, you need to dynamically allocate space to the char pointer...
Ray Devore
rbdevore2007
Offline Send Email
May 1, 2005
1:19 pm
44333
Cheeyimgoh Hi, I wonder what do you like to do. If the purpose of the 'store my pointer' is to have a copy of it you can define a second pointer and then to...
Moshe Okman
m-okman@...
Send Email
May 1, 2005
1:23 pm
44334
... If we give you the program, then _you_ are not doing the project. ... Shyan...
Shyan Lam
sflam108
Offline Send Email
May 2, 2005
12:34 pm
44335
... <snip> Melo_FCI, I don't intend to offend anyone, but this hint is ridiculous to many participants of this group (such as me). Why? Because I NEVER use...
Nico Heinze
nico_heinze
Offline Send Email
May 2, 2005
1:04 pm
44336
... ...and in case you have really binary data you can't use strcpy() because it will stop at the first NUL byte (that is, the first byte with value 0 or...
Nico Heinze
nico_heinze
Offline Send Email
May 2, 2005
1:06 pm
44337
Yes, I kind of agree with Nico. I do use Messenger, but I would prefer not to answer questions over it. One of the reasons I replied was to gather...
Andre
ralph_malph
Offline Send Email
May 2, 2005
1:30 pm
44338
... I agree. My view is that the conversations in groups/mailing lists like this are not a personal service for those seeking help. Rather, they should also...
Bernd Stramm
berndstramm
Offline Send Email
May 2, 2005
1:50 pm
44339
... .dat is the most overloaded file extension. It is used by almost every class assignment when external data is needed. So you should look at the actual...
Shyan Lam
sflam108
Offline Send Email
May 2, 2005
2:05 pm
44340
To: cprogramming2@yahoogroups.com, c-prog@yahoogroups.com Can anyone please tell me what an enode is. It is different from a node of a (parse) tree? Thanks in...
john_voltaire
Offline Send Email
May 2, 2005
4:38 pm
44341
... WM_ERASEBKGND is sent at differing times. It is used as part of the painting operation to reduce flicker during redraw operations (e.g. sizing and adding...
Thomas J. Hruska
shininglightpro
Offline Send Email
May 2, 2005
5:55 pm
44342
sorry nico i didnt mean to upsete u ... <snip> Melo_FCI, I don't intend to offend anyone, but this hint is ridiculous to many participants of this group (such...
melo_fci
Offline Send Email
May 2, 2005
6:27 pm
44343
... You can trivially make the code portable to _all_ cases... unsigned char author[sizeof(char *)]; Note that unsigned char is better because it's guaranteed...
peternilsson42
Offline Send Email
May 2, 2005
11:59 pm
44344
Hello there, I'm learning abt the free( ) command... I thought of writing a program that could totally free my RAM storage... so that my computer could gain...
Sanjeev Gopinath
sanjeev902001
Offline Send Email
May 3, 2005
12:03 am
44345
Hi, I cant understand that why the following code is not showing any results , there is no problem in compiling and linking #include<stdio.h> main( ) { int...
Mehtab Alam
mcsd2k6
Offline Send Email
May 3, 2005
12:06 am
44346
... Ah, but compilation does not mean correctness. Understand the language first, before you write code. Never write code by guesswork. ... Implicit int...
peternilsson42
Offline Send Email
May 3, 2005
12:20 am
44347
... What free command do you mean? There is a free function declared within <stdlib.h>, but if you read the secification for that function, it can only free ...
peternilsson42
Offline Send Email
May 3, 2005
12:35 am
44348
Well, although it seems like a noble idea, I think it is a bit misguided. How is clearing out your RAM going to gain speed for you? Cache requires RAM backing...
Andre
ralph_malph
Offline Send Email
May 3, 2005
12:46 am
44349
... Nothing is wrong with getchar, as others have pointed out. Try adding a \n to your scanf format, so it will gobble up the "return" the user hits to enter...
Barry Gold
bgoldnyxnet
Offline Send Email
May 3, 2005
12:53 am
44350
... It will gobble it up, then ask for another one, and another, and another, ... until the user enters something which is not whitespace. Such behaviour is...
peternilsson42
Offline Send Email
May 3, 2005
1:47 am
44351
... You want to WHAT??!?!?!?! free() is used to free dynamically allocated memory that has been previously allocated by your program (using malloc, calloc,...
Brett W. McCoy
idragosani
Online Now Send Email
May 3, 2005
1:54 am
44352
use fflush(stdin) before getchar(). Eventhough it is a very bad practice to flush input buffers, it works under windows and DOS. test'; "> ...
Chandra Sekar
chasan_21
Offline Send Email
May 3, 2005
6:06 am
44353
... <snip> Hi Melo_FCI, if I am upset due to someone cross-posting a question it's my own fault. No discussion about this one. Actually I could (and should)...
Nico Heinze
nico_heinze
Offline Send Email
May 3, 2005
6:19 am
44354
Dear all, I just begin studying financial engineering program. This program required that I have to have ability enough to write some program in C++. But, now,...
Jian Chi-Hao
jchihao
Offline Send Email
May 3, 2005
10:18 am
44355
... Non-standard use of a Standard™ function. fflush() is only guaranteed to flush output streams. Using it to flush input streams is not guaranteed. Just...
Paul Herring
shabble
Offline Send Email
May 3, 2005
10:26 am
44356
It worked with all the following compilers:- Turbo C++ VC++ 6.0 MingW(gcc) Can u suggest a windows/DOS compiler where it doesn't work?? I don't mean offence....
Chandra Sekar
chasan_21
Offline Send Email
May 3, 2005
10:35 am
44357
It worked with all the following compilers:- Turbo C++ VC++ 6.0 MingW(gcc) Can u suggest a windows/DOS compiler where it doesn't work?? I don't mean offence....
Chandra Sekar
chasan_21
Offline Send Email
May 3, 2005
10:35 am
44358
On 5/3/05, Chandra Sekar <chasan_21@...> wrote: [about fflush() not designed to work on input streams] ... Any compiler that you haven't mentioned is a...
Paul Herring
shabble
Offline Send Email
May 3, 2005
11:13 am
44359
... I'm not Paul, but here are my 2 pennies: 1) that it happens to work with several compilers doesn't mean anything; it's simply a non-standard use of a few...
Nico Heinze
nico_heinze
Offline Send Email
May 3, 2005
12:05 pm
44360
... [snip] ... To be fair to Chandra - they did specify Windows/DOS only - expecting Linux to be considered would take this (already off-topic) thread (even...
Paul Herring
shabble
Offline Send Email
May 3, 2005
12:36 pm
Messages 44331 - 44360 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