April 24th, 2010 11:23 PM
You have multiple link failures after a link warning about your incremental linker settings being messed up... so address the warning and I suspect the failures will go away.
Let me google that...
April 20th, 2010 07:39 PM
a) ios:ut is ios::ut.
b) you can't write to an input file stream. use an output file stream.
April 18th, 2010 11:20 PM
Resolved.
http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/37ae4339-5a9c-4261-89e9-ec4cb6351651
April 18th, 2010 11:15 PM
I'm not willing to download that attachment. Please post your source in [CODE] tags if you would like help.
April 18th, 2010 11:07 PM
C requires you to define the size of the lowest (n - 1) dimensions, if you think about it this makes sense. The array is contiguous, so how can C possibly know how big each dimension of the array is...
April 12th, 2010 05:43 PM
It is a pretty goofy way to do it, I agree. I probably wouldn't initialize temp_B at all until I got my first data member, and I certainly wouldn't check if (count == 0) every iteration. I was just...
April 12th, 2010 06:47 AM
So, the answer has already been given but it sounded like you didn't understand it. The way you check temp_B is your problem. Yes, you removed its initialization to 0, but you didn't re-consider...