Create an array of size 30. Take 2 indexes from user as input and multiply the value on those indexes and display the answer on screen.
Create an array of size 15. Multiply even values of array with 3 and place them in the array
Create an array of size 20. Take input from the user and find the highest number from the array.
Create an array of size ten, get input from user, show odd index sum and even index sum, show array element by element
Create an array of size ten; get input from user as odd index has odd value [place a check that when user enters odd value then assign that value to the array element] and even indexes can have any value, show array element by element.
Create an array of size ten; get input from user, show only odd values in one go and then even values in one go.
Create an array of size ten; get input from user, show only odd index values in one go and then only even index values in one go.
Create an array of size ten; assign one to all its positions one by one through loop, and show array elements one by one on screen with space.
5
4 5 4
3 4 5 4 3
2 3 4 5 4 3 2
1 2 3 4 5 4 3 2 1
2 3 4 5 4 3 2
3 4 5 4 3
4 5 4
5
Given a string in camel case,write a program to convert the given string from camel case to snake case...
example:
if the given word is "PythonLearning" in camel case.,your code should print given word in snake case "Python_Learning"...