DEBSOURCES
Skip Quicknav
sources / ikos / 3.5-2 / analyzer / test / regression / null / test-5.c
123456789
#include <stdio.h> #include <string.h> int main() { char s1[9] = "AAAA"; const char* s2 = "BBBB"; strcat(s1, s2); return 0; }