I have below awk command which give mentioned result as well.
echo '1600000.00000000' '1600000.0000' | awk '{ print ($1 != $2) ? "true" : "false" }'
Result is : - false
As per numeric value the result given by the command is correct.
But I want command must consider both input('1600000.00000000' '1600000.0000') as string and give the result as true. Because If you consider both input as string then they are not equal difference is there in precision.