Has anyone had luck installing / running Websphere Application Server on Solaris 10, on a x86 32 bit machine? From what I see on the IBM pages, it seems to imply it only supports 64 bit H/W, but perhaps I'm reading this incorrectly.
Agreed 100%! I always err on the side of readability. In fact, some of this code I'm updating was full of "negative logic" which I've replaced. I don't like to have to stop and think about each expression when going through the code... I always use "if (strcmp (...) == 0)"...
Thanks guys!! I wasn't sure how it would evaluate (and why it compiled), but this makes perfect sense. I'm sure what they meant was:
if ( !strcmp(temp_calc, "MULTI_TEST") )...
This wouldn't be the first bug I've seen in this code! At least now I can see what the effect of the...
This may be trivial, but something I haven't seen before... in some existing code I came across a statement (where temp_calc is a char variable):
if ( !(temp_calc, "MULTI_TEST") )...
What does the "(,)" operator do? Is it legal with two char types as shown in the above...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.