Pointers and references are two different things. Conceptually a pointer is a memory location holding a pointer to the area of memory that holds the data you require. A reference is the memory...
References are fun, if you're new to C++ it is the first thing I would suggest you master. There are plenty of tutorials around the internet that will help you out.
You could approach this problem many ways, I think the most simple is to create a hash map of associations matching each letter with its corresponding replacement. I.E. "a"="w", "b"=y" and so...
Thanks for the feedback. We do use Netmeeting now, however it's restrictive and takes a while to setup. It doesn't store contact lists for example. Unfortunately external server based technology is...
I'm after a software component to help me run a distributed team of developers and support technicians. We run over several states of my country and often spend many hours a day on the phone...
Probably the best way to get some assistance is to post the code that you've having trouble compiling. Try to isolate it down to just a few lines if you can and then post it...
Also an option but it will mean I have to maintain two code sets as this code runs cross plat form running smoothly and quickly under Unix (AIX) and mean I'd have to re-write a large portion of it.
...
Thanks for the reply, yes this is certainly an option and one I will have to investigate if I cannot find a quicker solution to my problem. However this code is very complicated and it would...
I have a large file (well 17mb) and I want to randomise the lines in the file. The process I have loads the file, creates a file pointer list pointing to the first character of each line,...
There are lots of ways you can use C++ for Web. C++ is exceptional for Web Services when using gSOAP or one of the other good SOAP libraries. You can write C++ as a CGI application that will run...
I'm not familiar with C#, but what is the output you're getting from this code? What XML tool are you using to parse and update the XML or does C# come with one as default?
There are lots of ways you can add images. YOu can add an image reference tag if the image is already hosted somewhere. You can serialise the image and then de-serialise it on the client end.
...
I got bored half way through it and had to push myself to finish the article. I thought it was a load of dribble I'm afraid. You can make a comparison between software development and pretty much...
I haven't worked with BCB 4.x but the later versions allow you to change the immediate output in the IDE. Modifying the generated makefile may not be a good idea.
Websites are hosted on HTTP servers. What you need to do is make an HTTP request of the server to get the website that youre after. Make a get call to the page you require and then parse the...