Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
pula
a guest
Sep 20th, 2019
113
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.18 KB
| None
|
0
0
raw
download
clone
embed
print
report
int oglindit(int n)
{
int c;
int aux = 0;
while (n != 0)
{
c = n % 10;
n = n / 10;
aux = aux * 10 + c;
}
return aux;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
30 min ago | 8.94 KB
Untitled
2 hours ago | 8.56 KB
Untitled
4 hours ago | 14.18 KB
Untitled
6 hours ago | 14.46 KB
Untitled
8 hours ago | 14.10 KB
Untitled
10 hours ago | 12.82 KB
Untitled
12 hours ago | 15.05 KB
Untitled
14 hours ago | 11.71 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!