[Example 1: int _z; // IFNDR, _z is reserved because it starts with _ at global scopeint main(){int __x; // IFNDR, __x is reserved because it starts with __int _Y; // IFNDR, _Y is reserved because it starts with _ followed by a capital letterint x__y; // IFNDR, x__y is reserved because it contains __} — end example]