Why doesn't that work ??? ... (the red term)
Code:
{ ...
int ierg = <s.th.>;
char *zkerg;

zkerg = itoc(ierg);
... }
... and itoc is defined :
Code:
char* itoc(int zahl)
{
	char *temp;

	_itoa(zahl, temp, 10);
	
	return temp;		
}