1) What is the newest version of C language? 2) How is GCC complying to it? 3) For an old C programmer, what is the main differences of the new language?
I'm asking this because I learned these days (a new feature) that we can actually attribute values to a struct like:
struct t
{
int i;
char c;
} s;
s = (struct t){exponent, coefficient};
So I'm wondering about other things I might be missing when programming...
Thanks, Beco