Answered by:
What does this C Code statement mean?

Question
-
Statement:
temp<<=1;
Thanks
DocZafSunday, February 5, 2012 9:11 PM
Answers
-
-
C Assignment Operators
http://msdn.microsoft.com/en-us/library/474dd6e2%28v=vs.100%29.aspx
Assignment Operators: =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, and |=
http://msdn.microsoft.com/en-us/library/5bk6ya5x.aspx
- Wayne- Marked as answer by Rob Pan Thursday, February 9, 2012 5:49 AM
Sunday, February 5, 2012 11:05 PM -
Equivalent to: temp = temp * 2;
Visual C++ enthusiast, like network programming and driver development. At present is being engaged in the WinCE/Windows Mobile platform embedded development.- Marked as answer by Rob Pan Thursday, February 9, 2012 5:49 AM
Monday, February 6, 2012 1:29 AM
All replies
-
-
C Assignment Operators
http://msdn.microsoft.com/en-us/library/474dd6e2%28v=vs.100%29.aspx
Assignment Operators: =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, and |=
http://msdn.microsoft.com/en-us/library/5bk6ya5x.aspx
- Wayne- Marked as answer by Rob Pan Thursday, February 9, 2012 5:49 AM
Sunday, February 5, 2012 11:05 PM -
Equivalent to: temp = temp * 2;
Visual C++ enthusiast, like network programming and driver development. At present is being engaged in the WinCE/Windows Mobile platform embedded development.- Marked as answer by Rob Pan Thursday, February 9, 2012 5:49 AM
Monday, February 6, 2012 1:29 AM -
Thank You All
DocZaf
Thursday, February 9, 2012 6:49 PM