deleting first element of an array....
deleting last element of an array...
deleting middle element of an array...
inserting first element of an array....
inserting last element of an array...
inserting middle element of an array...
searching the 2nd highest positive even integer


thanks i need it...


thanks

William Hemsworth commented: Go and read the rules.. -1
Freaky_Chris commented: We are not a homework service, thanks +0

Recommended Answers

All 2 Replies

No.

We won't do your homework for you. Read the forum rules, post your attempt and then ask for help (specifically).

Make sure you use code tags.

I could help you write your code but I will do something even better . I will give you some hints of how to go about this so you can solve it yourself. And when you do, you will get the satisfaction of knowing that you did it and not someone else. So now here are the hints :

first to declare an arrray is the following:

datatype variable_name [constant size];

ex. int ary[100];

note:
when you declare an array of some size. its end size is its (size-1)

so on the example above the last element is ary[9];

This is so because the first element starts with 0 and not 1 ;

so to delete a last or first element you would....do something
(maybe...ary[99]=0; this would be the same as deleting)

and to insert you would ..do something. (maybe ary[0]=23;)

for the rest you should figure it out yourself. And if you still do not get it then post your problem with proof that you tried..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.