class - Beginner C++ pointer -
i reading code snippet , saw
file * infile = fopen("input.wav","rb");
i want ask 2 questions here.
what
file
here. class, object or else.what
infile
pointing to. have seen pointersint, char
etc. pointing to.
file
a structure containing information file in stdio.h
infile
points object returned fopen
, type file
Comments
Post a Comment