this fonction is supposed to print character by character am just wondring if I can do better
Code:
void PROMPT(char *T)
{
int i = 0;
if(*(T+i) != '\0')
{
printf("%c", *(T+i));
i++;
}
else
return;
PROMPT(T+i);
}
Comment