hi please interpret following line of code english?
"foo".trimend(new char(0 - 1) {}) i know trimend not char bit.
the code posted quite meaningless in context posted manipulated code found or made example?
to answer question:
trimendremoves characters end of stringnew char(x)creates array of characters removed,xspecifies size of array0-1specifies upper bound of array-1- doesn't make sense array starts @0, ends @-1{}initialises character array
Comments
Post a Comment