1#import <Foundation/Foundation.h> 2 3/* get #of elements in a static array */ 4#ifndef NELEM 5#define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0]))) 6#endif 7 8int main(void) { 9 return 0; 10} 11