Starting at the 40th byte for the next 4 bytes (little endian) is the Subchunk2 size. This can also be deduced from the formula:
Subchunk2size = NumSamples * NumChannels * BitsPerSample/8
NumChannels start at byte 22 and 2 bytes (little endian) in length. BitsPerSample start at 34th byte and is 2 bytes (little endian) in length. Replacing all these you can get the NumSamples which is the number of samples.
For example: if Subchunksize2=2048, NumChannels=2 and BitsPerSample=16, you get
2048 = NumSamples * 2 * 2 so NumSamples=512
A good read is here.