Hi everybody,
I'm new in programming. Getting started with C. Im trying to do a few easy things like to uppercase a string.
But i got stuck...
This is what i have so far:
void toupper( char *text )
{
char c[] = "testING";
}
And im not sure if this is good..
Can somebody help me with this function please?
Thnx in advance!