Q : Write a program that accept an array of 10 integers and a number to be deleted from the array if found. Represent deleted element with -1 and display final array. If not found print appropriate message.
Answer :
#include<stdio.h>
#include<conio.h>
/*============================
Girfa Student Help
Delete operation in array
==============================*/
void main()
{