Files
codeql/cpp/ql/test/examples/expressions/Sizeof.c

4 lines
76 B
C

void Sizeof(int array[]) {
int i = sizeof(int);
int j = sizeof(array);
}