Files

5 lines
60 B
C++
Raw Permalink Normal View History

int broken(int* iptr) {
*iptr = 42;
return *iptr;
2021-11-28 14:31:07 +01:00
}