mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
13 lines
210 B
C++
13 lines
210 B
C++
|
#include <db_cxx.h>
|
||
|
|
||
|
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
int main()
|
||
|
{
|
||
|
Dbt dbt;
|
||
|
dbt.set_size(3);
|
||
|
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
|
||
|
return 0;
|
||
|
}
|