Fill in the c code for the question below: Define the function: void deleteAtV1(int num[], int *count , int pos); //The function deletes the item at pos For example: Test Result int...


Fill in the c code for the question  below:


Define the function:


void deleteAtV1(int num[], int *count , int pos);


//The function deletes the item at pos


For example:













TestResult

int num[10]={4,5,1,2,8};


int coun=5;


deleteAtV1(num,&count,2);


display(num,count);



4528

code:


void display(int num[], int size){
    int i;
    for(i=0;i
    printf("%d", num[i]);
}


// Fill up this missing code to delete [2} in the array



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here