C Programming:
Write a function that takes a size DIM array of double's as input and sets every value in the array to zero.
If not too much trouble, please annotate your work (so I'm learning and not just blindly copying), thankyou
The exact info I was given is shown below. I have not idea what size DIM array means.

#include <stdio.h>
#include<malloc.h>
int main(void)
{
void set(double *,int); //function prototype takes integer and
DIM
double *arr;
int dim;
printf("\n Enter the DIMENSION of the array");
scanf("%d",&dim); //Enter the dimension of array
arr=(double *)malloc(dim*sizeof(double)); //dynamically allocate
the array
set(arr,dim); //call the function to assign the values to 0
return 0;
}
void set(double *arr,int n)
{
int i;
for(i=0;i<dim;i++) //Loop to access each element of array
*(arr+i)=0; //array 0 to all the elements of array
printf("\n The array elements are");
for(i=0;i<dim;i++)
printf(" %lf",*(arr+i)); //display the elements of array after
assign to 0
}
OUTPUT

C Programming: Write a function that takes a size DIM array of double's as input and...
a) Write a function that takes as input 2 parameters, an array and its size (both ints) and returns the max. Include the driving (main program also. To pass an array to a function, do the following: return_type my_function(int my_array[], int size) b) Write a function that does the above but can contain duplicate numbers and is capable of removing them. Scan in input. Note you may need the sizeof( ) function which is one of the standard libraries.Thus you...
Create a function that takes in an integer array called “input” and size. The function should return a pointer to a dynamically created array the has two locations. The first is the minimum number in the input array and the second is the maximum number in input. Demonstrate your work by calling this function in main. The program should be c++
Write program in C++: Function name: Average1D: The Function takes an integer array of 1 Dimension of any size that is given from the main program. The function returns the average of the numbers that less than or equal to 50.
C++ ProgrammingWrite a function that takes an integer array, the array size and a number. And it determines how many times that number appears in the array. Just copy the following code and paste it to your answer. And fill the corresponding part. #include < iostream >using namespace atd; int howmany (int array lint , int number){ //Your code comes here} int main() {const int N =10; int array[N] = [11,3,2,1,3,4,6,9,1.3); int count = howlany(array,N,3);cout << 3 < "appesa" << cout << "times!"; return 0;
Write a function with two input parameters: an array of numbers and the size of the array (the number of elements). The function should return the count of even numbers in the array. For example, if the input to the function is the array [3, 2, 45, 56, 12], the function would return the integer 3. Use the following function header: int countEvens(int nums[], int size) { }
Code in C++ please! Write a function that takes an array of integers as an input parameter (the address of the first value of the array). It returns nothing. It prints out the array as a single line, with commas between each number, and when the array is finished being printed, it prints an endl; so that we flush the buffer and move to a new line. (I’m having you write this function because you’ll be wanting to print out...
Using the programming language Java or C++, Write a function that takes an integer as input. Return true if this integer is a palindrome integer; false otherwise;
Write a C++ function, smallestIndex, that takes as parameters an
int array and its size and returns the index of the first
occurrence of the smallest element in the array. To test your
function, write a main that prompts a user for a list of 15
integers and outputs the index and value of the first occurrence of
the smallest value.
The program should print out
Enter 15 integers:
The position of the first occurrence of the smallest element in...
C programming Write a function that accepts an array of integers as an input, and output the sum of all values and the multiplication of all values. e.g. Suppose that the array contained the following values: 1 2 3 -4 5. The function should calculate and output the sum of values (i.e. 1+2+3+(-4)+5=7) and the multiplication of all values (i.e. 1*2*3*-4*5=-120). Start by carefully writing the function prototype - put some thought into this. Think about the good programming habits,...
PYTHON Programming short Questions: 1. Write a function takes as input name (string) and age (number) and prints: My name is <name> and I am <age> years old(where name and age are the inputs) 2. Write a function that takes as input a and b and returns the result of: ??ab 3. Write a function that takes as input a and b and returns the result of: ??ab if it is valid to divide a and b 4. Write a...