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 66295 - 66324 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
66295
T H A N K Y O U !!!! passed my exam and now the sky is the limit. programming was alway a black magic for me and now after I passed and a lot of it is...
oriporat
Offline Send Email
Apr 1, 2008
10:50 am
66296
Hi all I am doing c++ programming under openWNS simulator. I am trying to use gdb for debugging. ... I have mapped the test file to gdb using set args but I...
Hussein Al-Shatri
shatri_h
Offline Send Email
Apr 1, 2008
7:35 pm
66297
... Oh dear...we've created a cult. Programming is a continual learning experience. It doesn't stop after passing a few exams. But, you're welcome, and you...
Thomas Hruska
shininglightpro
Offline Send Email
Apr 2, 2008
1:47 am
66298
Hello, I am working on a project related to lossless data compression using Adaptive huffman algorithm and LZW algorithm. I have written some code but its not...
veeru sagar
sagar_saga01
Offline Send Email
Apr 2, 2008
3:23 pm
66299
... How about you provide your code and point out the problem areas? -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would...
Brett McCoy
smartandkewl
Online Now Send Email
Apr 2, 2008
3:37 pm
66300
... Did you Google? There are MANY references. Here are a few: http://en.wikipedia.org/wiki/LZW http://marknelson.us/1989/10/01/lzw-data-compression/ This...
~Rick
thefirstrepa...
Offline Send Email
Apr 2, 2008
3:58 pm
66301
... TurboC is an extremely old compiler and does not conform to the ANSI standards. It also does not generate correct code for Windows. It creates code...
~Rick
thefirstrepa...
Offline Send Email
Apr 2, 2008
5:49 pm
66302
Thanks for the information it was valuable, Actually I am a M.Tech student and i am working on a college project which is related to Parellel...
veeru sagar
sagar_saga01
Offline Send Email
Apr 3, 2008
3:42 am
66303
... Visual C++ Express _2008_ is the latest and greatest version of VC++ Express. wxDev-C++ is preferred over Dev-C++. IIRC, Dev-C++ is no longer being ...
Thomas Hruska
shininglightpro
Offline Send Email
Apr 3, 2008
3:46 am
66304
Hello Everyone, I am learning about functions and the book I am reading says that it is good practice to create function prototypes. My questions are: Do you...
fireplace_tea
Offline Send Email
Apr 3, 2008
4:26 am
66305
... You don't HAVE to in most cases. They help to avoid compile-time issues and are required for referencing functions in multiple object files. int B() { ...
Thomas Hruska
shininglightpro
Offline Send Email
Apr 3, 2008
5:00 am
66306
fireplace_tea <fireplace_tea@...> wrote: Hello Everyone, I am learning about functions and the book I am reading says that it is good practice...
Seetha Rama Guptha
rsrguptha1
Offline Send Email
Apr 3, 2008
5:12 am
66307
Hi Everybody , I want to convert between HANDLE to HWND . May I know hyow can I do it . My requirement is I want to use SendMessage api to send some data to...
Gopi Krishna Komanduri
gopikomanduri
Offline Send Email
Apr 3, 2008
5:47 am
66308
Hello, I am working on a project related to lossless data compression using Adaptive huffman algorithm . I am trying to implement tthe algorithm.Till now i...
veeru sagar
sagar_saga01
Offline Send Email
Apr 3, 2008
8:53 am
66309
... Which book? ... If you write your source code such that you define the functions before they're used (resulting in main() being at the end of the source...
Paul Herring
shabble
Offline Send Email
Apr 3, 2008
9:11 am
66310
On Thu, Apr 3, 2008 at 6:47 AM, Gopi Krishna Komanduri ... http://www.codersource.net/mfc_ipc_wm_copydata.aspx -- PJH A man in a shellsuit goes into a posh...
Paul Herring
shabble
Offline Send Email
Apr 3, 2008
9:14 am
66311
Please help me. In this question a,b,c are legs of the triangle. And I want to find area of the triangle. s=(a+b+c)/2 Area=s*((s-a)(s-b)(s-c)) ^ (1/2) I wrote...
mdnizdil
Offline Send Email
Apr 3, 2008
9:20 am
66312
... [...] ... 1) That closing parens is in the wrong place. 2) 1/2 in this expression resolves to 0 (since you're inplicitly using integer arithmetic instead...
Paul Herring
shabble
Offline Send Email
Apr 3, 2008
9:32 am
66313
Hi! Could you give me an idea about how can i check if in an array is set a key, for example: #include <conio.h> #include <iostream.h> void main() { int x[10];...
alex_merlin_1985
alex_merlin_...
Offline Send Email
Apr 3, 2008
12:36 pm
66314
... Wrong way to find a window handle (there are different types of HANDLEs - very few of which can you actually typecast). Use FindWindow(). You shouldn't be...
Thomas Hruska
shininglightpro
Offline Send Email
Apr 3, 2008
12:42 pm
66315
On Thu, Apr 3, 2008 at 2:36 PM, alex_merlin_1985 ... There is none, since if it's allocated it's set -> if uninitialized, then for some random (garbage) value....
Tamas Marki
tamas_m
Offline Send Email
Apr 3, 2008
12:42 pm
66316
... Not a Standard header. Time to upgrade your compiler! ... Not a Standard header. Time to upgrade your compiler! ... int main() ... Use another variable...
Thomas Hruska
shininglightpro
Offline Send Email
Apr 3, 2008
12:51 pm
66317
On Thu, Apr 3, 2008 at 1:36 PM, alex_merlin_1985 ... Use std::vector instead which has methods to check bounds. And stop using the .h forms of the C++ headers....
Paul Herring
shabble
Offline Send Email
Apr 3, 2008
1:06 pm
66318
... Oops! Typo! I _meant_ 2008 ... I run wxDev-C++ and was the one who notified this group that Dev-C++ was outdated :-O It still identifies itself as Dev-C++....
~Rick
thefirstrepa...
Offline Send Email
Apr 3, 2008
1:16 pm
66319
... Furthermore the syntax for multiplication is correct in mathematical circumstances, but in C the OP has to use the multiplication operator explicitly under...
Nico Heinze
nico_heinze
Offline Send Email
Apr 3, 2008
1:33 pm
66320
I know about this approach, but the problem is that there will be a very big number of possible keys (billions), where only a few (max 10) of them will be...
alex_merlin_1985
alex_merlin_...
Offline Send Email
Apr 3, 2008
5:01 pm
66321
Thanks for the ideas, i already am using other compiler (Visual Studio Express)... so it's not exactly me who needs help with this issue, but a friend of mine,...
alex_merlin_1985
alex_merlin_...
Offline Send Email
Apr 3, 2008
5:07 pm
66322
The book I'm currently going through is Sams Teach Yourself C++ in 21 Days. I also have C++ Primer Plus. I am reading these two books to really drill the...
fireplace_tea
Offline Send Email
Apr 3, 2008
7:26 pm
66323
hi dear i think u can use ^ sign its better than the pow and sqrt ... From: Nico Heinze <grollnar@...> To: c-prog@yahoogroups.com Sent: Thursday, 3 April,...
sandeep khokhar
sandeep96115653
Offline Send Email
Apr 4, 2008
1:22 pm
66324
On Fri, Apr 4, 2008 at 9:15 AM, sandeep khokhar ... I don't know what language you are thinking about, but in C and C++, ^ is bitwise XOR (exclusive OR)...
Brett McCoy
smartandkewl
Online Now Send Email
Apr 4, 2008
1:26 pm
Messages 66295 - 66324 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