what are keyward ?can keyward be used as identities
Answers
Answered by
2
Answer:
Keywords are predefined, reserved words used in programming that have special meanings to the compiler. Keywords are part of the syntax and they cannot be used as an identifier.
As C is a case sensitive language, all keywords must be written in lowercase. Here is a list of all keywords allowed in ANSI C.
Explanation:
For example: int money:
Here, int is a keyword that indicates money is a variable of type int (integer).auto double int
Reserved Keyword
struct
break
else
long
switch
case
enum
register
typedef
char
extern
return
union
continue
for
signed
void
do
if
static
while
default
goto
sizeof
volatile
const
float
short
unsigned
Similar questions