Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #17.3K
Ranked #2K
~3K People Reached
Favorite Tags

11 Posted Topics

Member Avatar for varunrathi

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 …

Member Avatar for yellowSnow
0
193
Member Avatar for Katrix36

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 …

Member Avatar for Katrix36
-1
236
Member Avatar for johnray31

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.

Member Avatar for server_crash
0
534
Member Avatar for spoonhead
Member Avatar for Marauder

Besides, you do not have a [B]break[/B] statement for case 3. You need to put [B]break[/B] statements for each case.

Member Avatar for vegaseat
0
337
Member Avatar for gallas

[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 …

Member Avatar for jwenting
0
198
Member Avatar for Reagan

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?

Member Avatar for nvanevski
0
137
Member Avatar for jifiii

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.

Member Avatar for nvanevski
0
182
Member Avatar for smartintelleng

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, …

Member Avatar for nvanevski
0
118
Member Avatar for Starlight620

[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 …

Member Avatar for nvanevski
0
178
Member Avatar for hexonflux

[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 …

Member Avatar for alc6379
0
494

The End.