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
2a33c3cfec
cppcheck
/
test
/
cli
/
helloworld
/
main.c
9 lines
110 B
C
Raw
Normal View
History
Unescape
Escape
Add cli testing
2019-04-14 10:45:20 +02:00
#
include
<stdio.h>
int
main
(
)
{
test/cli/test-helloworld: Fix misra warning 17.7
2019-05-23 14:31:55 +02:00
(
void
)
printf
(
"
Hello world!
\n
"
)
;
Add cli testing
2019-04-14 10:45:20 +02:00
x
=
3
/
0
;
// ERROR
return
0
;
}