There should not be any difference. However, it depends completely on the compiler. There is no way to know for certain whether your compiler/interpreter generated different assembly based on different code that you entered until you look at the assembly generated.
In Visual Studio you can view the assembly like so:
http://msdn.microsoft.com/en-us/library/a3cwf295.aspx
In general, remember that the code you write in C++ is scanned by a program which decides best how to generate assembly for you. So in most cases, syntatic sugar like that will generate identical assembly code to the longer version.
More importantly, you should stop worrying about the difference in speed here. If speed is a concern, always look to your algorithm first, long before tiny differences like these.