December 25th, 2012 08:17 PM
I took an Intro class to C++ and have been trying to build on it.
Does anyone recommend any intermediate books?
October 31st, 2012 11:25 AM
Would an eof() function have worked here as well?
October 24th, 2012 09:35 PM
October 24th, 2012 08:52 PM
Do you have to use the sqrt() function?
Here's a code I did a while ago, it lists prime numbers from a given range.
It can be modified to just tell if a number is prime.
Hope it Helps
//...
October 23rd, 2012 04:23 PM
Ah, I knew about delete and I did forget...
Ok OK OK , now that you brought that up.. My original goal was to create a pointer to an array, and let the program
determine the size of the array at...
October 23rd, 2012 04:06 PM
Well, thank you guys for your help. I have a better understanding on how to use findfirstfile and findfirstfilex , and got a
crash course on support for unicode.
Unfortunately, I think I am over...
October 23rd, 2012 04:00 PM
One thing I can say in respect to insults is that, I too have asked for help , on forums or on chat rooms, and the Responses are pretty
blunt, and direct, but I've come to understand after many...
October 23rd, 2012 03:51 PM
Alright So, this is a simple code that I came up with for passing arrays to functions and performing a
mathematical operation on its elements.
Since I have no reference point, I would like to get...
October 9th, 2012 09:39 AM
Correct me if I am wrong. The following line
_tprintf(TEXT("Usage: %s [target_file]\n"), argv[0]);
stores the target file name into the argv array?
October 4th, 2012 08:49 PM
Thank you for your feedback.
October 1st, 2012 07:45 PM
Hello,
I want to create a program which scans the extensions of files located within its same directory and
arranges them in a newly created folder. I have done something similar with V.B, but I...