I am trying to write a simple function that will return the first space character in a line of taxt. If the text does not contain a space character then the value 0 is returned.
My code so far is as follows:
int FirstSpace(String Line)
{
int Index;
for(Index = 1; Index <= Length(Line))
{...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.