data type
Posted: Tue Apr 11, 2006 6:50 am
what's the difference between these functions:
Someone said to me that the second function is more safety to use than the first function? Is that true? If it's true, where's the danger? Thanx in advance...
Code: Select all
char * something( char * a ) // first function
{
...
}
char [] something( char a [] ) // second function
{
...
}