/*
** Compile this program against an SQLite library of unknown version
** and then run this program, and it will print out the SQLite version
** information.
*/#include<stdio.h>externconstchar*sqlite3_libversion(void);externconstchar*sqlite3_sourceid(void);intmain(intargc,char**argv){printf("SQLite version %s\n",sqlite3_libversion());printf("SQLite source %s\n",sqlite3_sourceid());return0;}