Computer Science, asked by melvinsam2988, 1 year ago

What are the keywords in c to create an infinite loop?

Answers

Answered by Imranpuda1
0
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. For example: int money; Here, int is a keyword that indicates 'money' is a variable of type integer.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. For example:

int money;

Here, int is a keyword that indicates 'money' is a variable of type integer. 

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.

Keywords in C Languageautodoubleintstructbreakelselongswitchcaseenumregister typedefcharexternreturnunioncontinueforsignedvoiddoifstatic whiledefaultgotosizeofvolatileconstfloatshortunsigned

Along with these keywords, C supports other numerous keywords depending upon the compiler.

All these keywords, their syntax and application will be discussed in their respective topics. However, if you want a brief overview on these keywords without going further, visit list of all keywords in C programming.

Similar questions