Hints or help on writing a code to find Max sum of 3 integers[code]if((a*b)>=(b*c)) HighestSum=a*b; else HighestSum=b*c; if(HighestSum>=(a*c) HighestSum=HighestS...
Reading a .txt file into an arrayI declared the arrays after the value for rows and now it works thank you so much.
Reading a .txt file into an arrayI am writing a program in Dev C++ to read values from a .txt file into a series of arrays. The prog...