V
Virtual_X
void st(const char *a)
{
cout << a;
delete(a);
}
int main ()
{
char foo[]= "CPP";
st(foo);
cout << "\n\n" << foo;
system("PAUSE");
return 0;
}
particular in the function st when i use delete(a)
is that also delete foo not only a
{
cout << a;
delete(a);
}
int main ()
{
char foo[]= "CPP";
st(foo);
cout << "\n\n" << foo;
system("PAUSE");
return 0;
}
particular in the function st when i use delete(a)
is that also delete foo not only a