How can I make a symbolic link to run a program with command line argument?

For this use case, I would recommend writing a shell script instead, e.g.

#!/bin/sh
sample -i eth0

Then save the script in /usr/local/bin as e.g. mySample, make it runnable with chmod +x mySample. And there you go :)