On Nov 30, 2010, at 18:04, Igor Tandetnik wrote:

> It is true, however, that it's fairly easy to transform any C program into a 
> program that's both valid C and C++, by applying straightforward 
> modifications - tightening type safety and such.

        Except there are a lot of areas where C advanced in C99 that C++ can't 
deal with in current versions:

        item_info info = { .nvalue = 1 };
 
        struct {
                char blah[];
        }

        char blah[somevariable];

        The ability to sprintf a size_t or any general 64-bit number.

        (and a few other things that are really convenient, but have got in my 
way in attempts to port c code to c++).

-- 
dustin sallings

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to