how many keywords do C compile?

Answer Posted / salim

c basically has 2 standards c89 and c99.

There are 32 keywords in c89 standard specification.

c99 standard adds 5 more.they are

_Bool , _Imaginary, _Complex, inline , restrict

So combining the two standards there are 32+5=37 keywords.

Otherwise c89 has 32 and c99 has(32+5)=37 keywords
depending on the standards.

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are file streams?

574


Explain what is the benefit of using an enum rather than a #define constant?

728


What are volatile variables in c?

525


Difference between strcpy() and memcpy() function?

684


Why c is called object oriented language?

592






When should the register modifier be used? Does it really help?

621


What is a protocol in c?

561


How to declare pointer variables?

688


What is c token?

615


Stimulate calculator using Switch-case-default statement for two numbers

2452


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

1785


What is operator precedence?

647


How does selection sort work in c?

629


What is main () in c?

590


Explain how can I make sure that my program is the only one accessing a file?

633