Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Error Function 1
dsdeep
Sep 21st, 2020
109
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C
0.21 KB
| None
|
0
0
raw
download
clone
embed
print
report
void
maxNumber
(
node
*
head
)
{
int
max
=
head
->
a
;
while
(
head
)
{
if
(
(
head
->
n
->
a
)
>
max
)
{
max
=
head
->
n
->
a
;
printf
(
"
\n
%d
\n
"
,
max
)
;
}
head
=
head
->
n
;
}
printf
(
"
\n
\t
\t
%d
\n
"
,
max
)
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
setups
4 hours ago | 0.16 KB
Untitled
5 hours ago | 0.36 KB
my-push Script
5 hours ago | 0.61 KB
cholibrium
1 day ago | 1.65 KB
SMB BIS - Dimble Woods - Virtual Piano
1 day ago | 3.15 KB
buscar-productos.blade.php
PHP | 2 days ago | 2.44 KB
simple youtube video to product
PHP | 2 days ago | 3.71 KB
OoT rando seed 6/1
2 days ago | 68.21 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!