I am using a function that returns a character array but I don't know how to declare the fuction.
Can anyone help please ??
Thank you very much
eg :
char test(char e[]){
char b[30] =e[];
return b[30];
}
This is a discussion on how do I declare a function that returns a char array within the C++ Programming forums, part of the General Programming Boards category; I am using a function that returns a character array but I don't know how to declare the fuction. Can ...
I am using a function that returns a character array but I don't know how to declare the fuction.
Can anyone help please ??
Thank you very much
eg :
char test(char e[]){
char b[30] =e[];
return b[30];
}
char * function ( char array[] )
-Prelude
My best code is written with the delete key.