int pow (int x, int n){ if ( n == 1 ) return x; if (n % 2 == 1) return pow(x,n/2,n/2) * pow(x,n/2,n/2) * x; return pow(x,n/2,n/2) * pow(x,n/2,n/2); } will c...
did they introduce any new alternative to multiple inheritance ?
if I do this how should I know that I am bot writing bad code ? for example I have 2 options to solve a problem but I used the bad one ?
will this cause memory leak ?
if I want to share my application which interacts with mysql , what should I do ?
why is changing compiler options is not recommended ? what issues will it cause ?
any good resources for learning qtquick2 ? ( video tutorial is preferred )
you mean sth liks list adt by dynamic array ?