+ 2
Define keywords. Name any five keywords of C language?
2 Réponses
+ 2
Keywords are predefined, reserved words used in programming that have a special meaning. Keywords are part of the syntax and they cannot be used as an identifier. For example: int money; Here, int is a keyword that indicates 'money' is a variable of type integer.
other examples
int
for
if
else
char
while
include etc
+ 1
Difine variable in c? Give an example