I want to ask you how can I calculate big o for this loop?' the x++ is clearly O(1) right? I don't understand the i*2 part... I watched videos on YouTube but i can't solve this. I will be thankful if you guys can help me understand this.
for(int i{3} ; i<=n ; i*=2){
x++;
}