class - Beginner C++ pointer -


i reading code snippet , saw

file * infile = fopen("input.wav","rb"); 

i want ask 2 questions here.

  1. what file here. class, object or else.

  2. what infile pointing to. have seen pointers int, char etc. pointing to.

file 

a structure containing information file in stdio.h

infile 

points object returned fopen , type file


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -