SIP mobile Applications
Ok I’ve been on and off the tech blogging for a while now, think it’s time I use a single blog and update it more frequently(for real)…Will start posting about SIP enabled devices programming in my next post…. Update: Dec …
Ok I’ve been on and off the tech blogging for a while now, think it’s time I use a single blog and update it more frequently(for real)…Will start posting about SIP enabled devices programming in my next post…. Update: Dec …
Common mistake if(x=2) instead of if(x==2) Write the rvalue of the expression at the left side of the equality operator (==): if(2==x) In this case the compiler will warn you if you typed the assignment operator (=) by mistake.