A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C program to get SQLite version in Linux
Q:

C program to get SQLite version in Linux

0

C program to get SQLite version in Linux

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will get the SQLite version using the sqlite3_version() function. The sqlite_version() function returns the string that contains the SQLite version.

Program/Source Code:

The source code to get the SQLite version is given below. The given program is compiled and executed successfully on Ubuntu 20.04.

//C program to get the installed version of sqlite.

#include <sqlite3.h>
#include <stdio.h>
#include <string.h>

int main(void)
{
    char ver[32];

    strcpy(ver, sqlite3_libversion());
    printf("Sqlite version: %s\n", ver);

    return 0;
}

Output:

$ gcc version.c -o version -lsqlite3 -std=c99
$ ./version
Sqlite version: 3.31.1

In the above program, we included the sqlite3.h header file to uses sqlite3_libversion() function. Here, we created a character array ver and then we copied the SQLite version to the ver variable and then we printed the SQLite version on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now