Will disabling the synchronization effect time if there is no printf() in C++?

127 Views Asked by At

I read the answers on Significance of ios_base::sync_with_stdio(false); cin.tie(NULL); which basically states significance of ios_base::sync_with_stdio(false); which matters when we mix the usage of cout and printf() in C++ and helps to speeds up time, but would it still speed up time if we won't use printf ?

My understanding says no because we are not passing any instruction of printf to buffer .

0

There are 0 best solutions below