int str_trim(char array[],int length) { int i=0; for(i=length;i>0;i--) { if(array[i-1]!=' ') break; } array[i]='/0'; return i; }