// Every read of a volatile variable will be read from RAM, not from cache (usually variables are cached for performance reasons) // Caches are faster -> do not use volatile kw if not necessary. // If ...