
- Forum
- Programming Talk
- C and C++
- Trickier Problem
Trickier Problem
This is a discussion on Trickier Problem within the C and C++ forums, part of the Programming Talk category; I faced a very tricky question recently which I am posting for all members to make a try. How can ...
-
Trickier Problem
I faced a very tricky question recently which I am posting for all members to make a try. How can a user point to second byte of an integer? As you all know integer is of four bytes. I am also trying out on this. All of you can make a try and those who get post it here for all of us to know the solution of this interesting trickier problem.
-
06-17-2007, 05:42 AM #2
- Join Date
- May 2007
- Answers
- 12
int a=576;
int b;
b = a<<8;

Reply With Quote





