My Char array allows for a user to input a purely numeric string, thus storing each digit in its own array space. I need to assign each element of the char ...
I have three one-dimensional arrays. The task is to store the numbers which exist in each of the three arrays in a forth array. Here is my solution which as you ...
Hello, The following code listing is the test of a function I am writing to convert a 5 digit integer value into a 5 element array containing the same data with the first digit corresponding to array member [0]. However, when I compiled it, I got errors related to passing pointers and such into my function and type mismatches, would anybody ...
Multiplying Huge numbers in integer arrays Hey everybody! I'm new to the forum and I could use some help. I need to write a program that will add and multiply huge numbers up to 30 digits long. I have successfully completed the addition part but I cannot for the life of me get the multiplication to work. I have verified that ...
Hi Bit stuck on this problem I have an array of integers representing a grid 10x10 (100 length) each value is between 1 and 9 and there are varying numbers of each value. I need to determine if a given random total number between 1 - 19 is possible from this grid. So for example if the total was 15 and ...