auto, break, case, char, const, continue, default, do, double, else, enum, extern, float, for, goto, if, int, long, register, return, short, signed, sizeof, static, struct, switch, typedef, union, unsigned, void, volatile, while. Hence, considering the variable naming convention, design an NFA that would Identify any valid variable name in C programming environment
Answers
Answer:
Here are some keywords from C Programming
Explanation:
Keywords are words that have special meaning to the C compiler. In translation phases 7 and 8, an identifier can't have the same spelling and case as a C keyword. For more information, see translation phases in the Preprocessor Reference.
The ANSI and ISO C standards allow identifiers with two leading underscores to be reserved for compiler implementations. The Microsoft convention is to precede Microsoft-specific keyword names with double underscores. These words can't be used as identifier names. For a description of the rules for naming identifiers, including the use of double underscores, see Identifiers.
The following keywords and special identifiers are recognized by the Microsoft C compiler:
__asm5
__based3, 5
__cdecl5
__declspec5
__except5
__fastcall
__finally5
__inline5
__int165
__int325
__int645
__int85
__leave5
__restrict
__stdcall5
__try5
dllexport4
dllimport4
naked4
static_assert6
thread4
See more:
https://brainly.in/question/40655603
#SPJ1