Explanation of modifiers in
c programming language by examples and questions
Rules for using modifier in c
Rule 1: We cannot use
two modifiers of same groups in any particular data type of c.
For example,
following declaration of c are illegal:
short long int i;
static auto char c;
signed unsigned int array[5];
pascal cdecl display();
Following are
valid
No comments:
Post a Comment