This website requires JavaScript.
Explore
Help
Sign In
walkero
/
cppcheck
Watch
1
Star
0
Fork
You've already forked cppcheck
0
Code
Issues
Pull Requests
Projects
Releases
1
Wiki
Activity
b7f812739c
cppcheck
/
samples
/
AssignmentAddressToInteger
/
bad.c
12 lines
96 B
C
Raw
Blame
History
int
foo
(
int
*
p
)
{
int
a
=
p
;
return
a
+
4
;
}
int
main
(
)
{
int
i
[
10
]
;
foo
(
i
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink