Skip to content

Commit

Permalink
delete from array
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitizsaini113 committed Dec 30, 2019
1 parent f313cc4 commit 220047e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 4. Array ADT/delete_from_array.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ int main()
struct Array arr1={{2,3,4,5,6},10,5};

Display(arr1);
printf("\n%d",Delete(&arr1,0));
printf("\n Element deleted is : %d",Delete(&arr1,0));
Display(arr1);

return 0;
Expand Down

0 comments on commit 220047e

Please sign in to comment.