{ }
( )
[ ]
those are parts in making a c++ program..
but what is the purpose or meaning of those parts??
( )
[ ]
those are parts in making a c++ program..
but what is the purpose or meaning of those parts??
if(something) { printf("somethind is true"); doSomethingElse(); }
boolean this, that, what if(this && that || what == true) i //is this the same if((this && that) || what) /* Requires that either both this AND that are true OR at least what is true */ // or maybe if((this && (that || what)) /* require that this is true AND either that or what is true*/
Comment