struct record { int ID; string name; string nationality; bool IsMale; }ExampleStudent;[/pre] this is what i can do so far to declare it variables.i need insert new record, delete and sort the record. so, what are the next steps? kindly show me the codes....
write a c++ program to remove all duplicates from an array list if the given array list is:- 1, 2, 3, 3, 3,4,4,4,4,9,11,14,14,14 the resultant array list is:- 1,2,3,4,9,11,14
I am Trying to build a game that uses arrays to select an image from an image list. when i run the game, i get an image in the image box, but it keeps cycling through all three options. the code so far is: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...


