I've got a header named Menu.c
there is a function menu wich call the function init_file(fileName) with fileName a char* (init_file return void)
i do printf fileName in the function init_file -> it prints the name of the file
i do printf fileName in the menu -> it returns NULL...
i thought a pointeur was returned even if u didn't write return fileName at the end of the function
Could u help me?