Sujet : Re: Top 10 most common hard skills listed on resumes...
De : already5chosen (at) *nospam* yahoo.com (Michael S)
Groupes : comp.lang.cDate : 25. Aug 2024, 17:28:10
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <20240825192810.0000672c@yahoo.com>
References : 1 2 3 4 5 6
User-Agent : Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-w64-mingw32)
On Sun, 25 Aug 2024 17:59:49 +0200
Bonita Montero <
Bonita.Montero@gmail.com> wrote:
Am 25.08.2024 um 16:50 schrieb James Kuyper:
C is a high level language. It is a very low-level high-level
language, but it's not in any sense an assembler.
C is almost the lowest-level of all high level lanugages.
I don't know any further language which lacks nearly every
abstraction.
Define "abstraction".
In my book this API is abstract.
struct bar_implementation;
typedef struct bar_implementation* bar;
typedef const struct bar_implementation* cbar;
bar* bar_make();
void bar_set_abra(bar x, int abra);
void bar_set_cadabra(bar x, double cadabra);
void bar_foo(bar x, int y);
int bar_get_abra(cbar x);
etc...