views:

85

answers:

1

What is the meaning of this in Objective C?

int sqlite3_bind_int(sqlite3_stmt*, int, int)
+2  A: 

This code is function declaration in C - language. As Objective-C is fully compatible with C, any C code can be executed in ObjC

jamapag