これは大丈夫ですか?私のfilepointerがXYZ()で乱れてしまいますか?ファイルポインタの位置
function XYZ()
{
fopen(myFile)
// some processing
// I am in the middle of the file
Call ABC()
}
ABC()
{
fopen(myFile)
//do some processing
fclose (myFile)
}
、これはどのような言語ですが? –