I'm trying to write a Merge Sort program with fortran 90. However, this is what I already could do:
program sorting
integer :: i,ialloc,error,n,d
integer, pointer :: a(:)
Print *,'How many numbers would you like to type in?'
Read(*,*)d
Print*,' Enter the values, separated by...