No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: Ok, I'll just give you a hint, try to do the program by yourself. Start with matching the characters on the opposite end of the string. On the first mismatch, get the rest of the string, create the reverse string from it and insert it into the right position. When … | |
Re: It might seem strange to you, but text files are binary, too. It's the application that treats them differently. For example, if you change the extension from .txt to .bin, the application will not handle it the same. If you are more precise in what you want to do, we … | |
Re: I am using Borland's C++ BuilderX Personal. Great tool, and also multiplatform. You can use the same IDE in WIndows, Linux, Solaris... Also good if you need cross-compiling. You can register your own preprocessors and compilers... In short-great IDE. Just don't expect any RAD development. | |
Re: How about you to try to debug your code? | |
Re: Besides, you do not have a [B]break[/B] statement for case 3. You need to put [B]break[/B] statements for each case. | |
Re: [QUOTE=gallas]Thank you for helping. The pointer-fix works ok, even though it's not exactly what I was hoping for. Now a related question. 1. I've heard that using pointers makes it much more difficult for the compiler to optimize code. Will the forward declaration and pointer solution be comparatively slow, and … | |
Re: Ok, bit by bit : y=f(x) is the curve. In our case, f is sin(), y is iSinValue, which makes x = count*PI. What's not clear? | |
Re: if you work on unix/linux, check the man page for getopt() function. It helps very much. At first it seems like an overhead, but in fact is very usefull. | |
Re: The error means that you are trying to access an uninitialized object (not necessarrilly NULL, but uninitialized). Having bad experiences with VS.NET debugger, my hint would be to inspect the objects that you use a couple of lines before the break line (as much I can see from the code, … | |
Re: [QUOTE=Starlight620]I ran my C++ program and got these error messages. I have no idea what they mean. :?: Will somone please help. error LNK2019: unresolved external symbol "int __cdecl GetInformation(int,int,int,char (* const)[15],char (* const)[15],float * const,float * const,float * const,float * const,float * const)" (?GetInformation@@YAHHHHQAY0P@D0QAM1111@Z) referenced in function _main fatal … | |
Re: [QUOTE=jwenting]what an idiotic rant that kid puts up... If you don't know how to do things under Windows that doesn't mean Windows is bad kid.[/QUOTE] No it doesn't, but it is bad anyway. Don't get me started, this is neither time, nor place for this. Besides, try to be less … |
The End.