Linked by Owen Anderson on Mon 19th Apr 2004 05:43 UTC
For years the development scene has been dominated by the C family of languages, primarily C itself and its immediate successor C++. Recent years have given rise to other C-descendents, however, such as Sun's Java and Microsoft's C#.
Permalink for comment
To read all comments associated with this story, please click here.
There is still no 'typeof' operator to compliment
'sizeof'. Stll no 'anytype' type definition.
ie:
anytype func_any(anytype a)
{
if(typeof(a)==int)
{
//perform an integer operation
b=new int[4];
return b;
}
}
Oh well, wait another 30 years I guess....<sigh>
pete