I'm new in C, and I'm trying to do a Student Record Management. These are just the main parts that I want to work, I want the string from fullName, to be assigned on fN[50]. Thank you!
char* Student_Full_Name(){
char *fullName[50];
printf("Enter Full Name of Student: ");
scanf("%s", fullName);
return fullName;
}
int main(){
char* fN[50];
fn[50] = Student_Full_Name();
}