Hi i know this may sound a bit silly but i have looked through some websites but can't really find exactly what the difference is between "=" and "=="
For example
if(x==0) execl(“/bin/ps”, “ps”,”-eal”,NULL)
how is that different from
if(x=0) execl(“/bin/ps”, “ps”,”-eal”,NULL)
thanks