I need an efficient implementation of a function in C that would be given a char[] and it will remove all uppercase characters from it returning everything left.
e.g. if given HELLOmy_MANname_HOWis_AREjohn_YOU__
it should return my_name_is_john__
this is not a HW too easy to be one, but its 2am in my timezone and I think this would be a solution to a problem im facing in my code now!
any help is welcome! cheers!=)