Yes. Several possibilities exist. ODBC, JDBC, and others. For Oracle, OCI, Pro*C, and others. Consult the database vendor's developer documentation, and you will find something. Unfortunately, this is too broad a topic to be answered easily here, other than this, except to list high level options.
result = a * b * c;
Build it, link it, run it.
thanks
Not that I'm aware of. But since Filemaker is a database, you can use C++ to access the database just as you would use C++ to create SQL queries on an SQL database. Think of Filemaker as being the backend to your C++ program.
Usually, but not always. For example the following is legal in C, but illegal in C++: char new [3] = "ABC";
oh well. it is like this
There is none. While you can access databases from C++, the two concepts are fundamentally different.
mini project data structure
#include <iostream> int main() { std::cout << "a plus bi" << std::endl; return 0; }
I don't use that function in C programme.
struct A {}; // base class struct B : A {} // derived class (single inheritance).
No. Neither C nor C++ are interpreted. Both need to be compiled and linked to produce highly-optimised machine code, which is then executed.