Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
shift.cpp
andrewb
May 13th, 2014
683
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include <iostream>;
void
shift
(
int
*
x,
int
z
)
{
*
x
=
*
x
<<
z
;
std
::
cout
<<
*
x
<<
std
::
endl
;
}
void
main
(
)
{
int
x
=
1
;
for
(
int
y
=
0
;
y
<
8
;
y
++
)
{
shift
(
&
x,
1
)
;
}
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Button
C++ | 1 hour ago | 1.55 KB
13 найти маску
Python | 1 hour ago | 0.30 KB
sync_logs
Bash | 2 hours ago | 1.81 KB
Untitled
VeriLog | 2 hours ago | 0.37 KB
abe
C# | 3 hours ago | 2.59 KB
Nano_button_led_hc05
C++ | 4 hours ago | 1.50 KB
VanillaAmmoCraftsRecipes.json
JSON | 4 hours ago | 78.72 KB
Untitled
VeriLog | 5 hours ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!