c - Which is preferred: 'long int' or 'long' -
c - Which is preferred: 'long int' or 'long' -
what preferred way of defining long integer in c? there compatibility concerns?
long int ln; or
long ln;
there no "compatibility concerns", no. exact same type, long short form of type name long int. short short form of short int.
it's of course of study subjective, think c programmers utilize long.
c int long-integer
Comments
Post a Comment