C언어 ++ 연산자의 동작을 나누면

int temp = count;
temp = temp+1;
count = temp;

이거라는데

temp 변수생기고 값 복사하고 다시 값 바꿔주면 느릴거같은데

count = count + 1 이 더 빠른거 아님?