1
2
3
4
5
6
7
8
9
#include <stdio.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

int main(void) {

        int j = 1;<--- Variable 'j' is assigned a value that is never used.
        printf("Hello World!\n");

        return 0;
}