If you use int, it is ok. Because int is smaller than double. But if you use double instead of int, it will trouble. [Non-text portions of this message have...
Tsetsbold
ntsetsbold@...
Dec 1, 2007 10:37 am
64708
... That's one of the things I'm going to fix for Second Edition (the fabled Second Edition is still in the pipeline). In the meantime, what works for most...
... You can install on Linux with Wine. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would overturn the world." --...
... I can vouch that it installs perfectly well under Wine! -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would overturn...
Hi , Can someone please send me one demo project on C++ in Unix environment. That will be very useful for me. Waiting for your kind cooperation. Thanks, ...
I write progarms just as follows,if it is ok? #include<stdio.h> #include<math.h> int main() { int number; int a[10]; for(number = 0;number <= 9;number++) { ...
renlun12@...
Dec 1, 2007 2:11 pm
64713
... Take a look on freshmeat.net, thousands of projects, most open source. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it...
On Sat, 1 Dec 2007 12:14:57 +0000 (GMT) ... I think what you're after is something that seems like a project file in visual stupid perhaps? The projects are...
... And now on a more serious note: While it is admirable that you are wanting something to do and want to spend your time learning C/C++, c-prog is not here...
I have classes Ally and Enemy, both subclassed from Character. How can I use Character's constructor from inside the constructor's of Enemy and Ally?...
I know that a segmentation fault is the equivalent of a null pointer exception in Java, but I don't understand why it's happening here. My full code is posted...
... A segmentation fault can mean you are accessing memory you have no permission to use, like if you are trying to access memory you have not allocated (null...
... I found a handy feature of gdb called 'backtrace' that told me where the problem was. It seems I was attempting to call SDL_FreeSurface on a surface that...
... You still aren't using 'virtual' destructors. ... Where/How is 'name' defined? This is probably where your problem is. ... General observation: You...
Hi, For me or others, there is only one way to learn C. I don't know C++, but all computer languages are the same to learn. The best way to learn is write in...
Tsetsbold Narantungalag
ntsetsbold@...
Dec 2, 2007 8:01 am
64726
... The C FAQ is a good place to start, along with taking vocational studies, such as a night class in C, or even C#, they both share some common syntax and...
... I am learning C++ right now. I have learned basic C/C++ in university. The books I have read so far( last 8 months or so): 1. Scott Meyers. effective C++ ...
hi every body Iam having two qs, pls give me the ans int i = -1; give me the binary of this like 8 is having binary of 1000. second one union{ int i; struct{ ...
... When you joined c-prog, you should have received an e-mail containing the group welcome message. In that message was a list of books that you should read....
... Actually, it's already out, including Visual C++ Express 2008. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would...
... Oh. Guess it is time to update that bit of text. My personal position is still a "hold off" until others figure out what new bugs there are and the hype...
... Well, somebody's gotta be *wink* *wink* From what I can tell, VC++ Express 2008 can do 64-bit now, although I don't have a 64-bit Windows machine to try it...
... Roy, Just a suggestion from a neophyte, but you could try: Dan Gookin's "C for Dummies." It takes you through bit by bit. By all means, type each program...