The first thing I notice is that your prompts indicate you are reading in location one's ordered pair then location two's ordered pair, but the scanf() statements themselves seem to indicate you are reading the latitudes followed by the longitudes. Which way did you mean to do it?
Zhuge,
oh, Thanks for pointing that out. (I meant to have lat then long). Damn copy paste gets me everytime. no more of that.
heres the coordanites i'm working with atm :
SAN indicates San Diego, and its coordinates are Lat = 32.7335556 and Long = -117.1896667. JFK is New York and its coordinates are Lat = 40.6397511, Long = -73.7789256.
The trigonometric functions in the standard library take their arguments as and return radian values; so you'll need to convert those degree inputs before sending them in. On the other hand, you don't need to convert the result of the function to radians as it is already radians.
Also, you don't seem to use the variable Distance anywhere, so I'd remove it unless that was a mistake.