Answer:
12460.799805 feet.
Explanation:
#include <stdio.h> //include the libraries
int main()
{ float d,conv,dml; //define the variables
d=2.36; // set the distance value
conv=5280; //set the convertion factor
dml=d*conv; //(result) here, we are multiplying the distance and the factor
printf("%f",dml); //print the result as a float variable.
}