I know this initialization: bitset<20>.
bitset<20>
But what does this initialization mean: bitset<1<<20>?
bitset<1<<20>
But what this initialization means?
Parsing headache for the compiler perhaps.
You can use equivalent snippets: bitset< 1<<20 > - i.e. 1 left-shifted by 20 bits - bitset<1048576>
bitset< 1<<20 >
1
bitset<1048576>
Copyright © 2021 Jogjafile Inc.
Parsing headache for the compiler perhaps.
You can use equivalent snippets:
bitset< 1<<20 >- i.e.1left-shifted by 20 bits -bitset<1048576>