Printing To Screen: Difference between revisions

m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
m (Bot: Replace deprecated source tag with syntaxhighlight)
m (Bot: Replace deprecated source tag with syntaxhighlight)
 
Line 154:
Here is an example implementation of the itoa() function (which is not standard, but provided by many libraries):
 
<sourcesyntaxhighlight lang="c">
char * itoa( int value, char * str, int base )
{
Line 192:
return rc;
}
</syntaxhighlight>
</source>
[http://www.strudel.org.uk/itoa/ And here is a shorter one]