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:
int num[10]={4,5,1,2,8};
int coun=5;
deleteAtV1(num,&count,2);
display(num,count);
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
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here