-
-
Save anonymous/79a9eb9c82c4b17dcbf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void multiplyEntry (int array[], int size){ | |
| int temp = array[0]; | |
| for (int i = 1; i < size; i++){ | |
| array[i] = a[i]*array[i-1]; | |
| } | |
| array[size-1] = temp; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment