d908af23
1 2 3 4 5 6 7 8 9 10
#include <string.h> int main(void) { char *s; s = strndup("123", 2); return s[0] != '1' ? 1 : s[1] != '2' ? 2 : s[2] != '\0' ? 3 : 0; }