Bootstrap

C语言找数组中指定字符串位置

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define NUM(a) (sizeof(a)/sizeof(*a))

int searchKeyTable(const char* table[], const int size,
	const char* key, int* pos)
{
   
	if (table == 
;