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

Are the outer parentheses in return statements really optional?

566


State the difference between x3 and x[3].

640


Why c is called a mid level programming language?

596


What is a double c?

580


What is bubble sort in c?

627






What does it mean when a pointer is used in an if statement?

592


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2323


Explain what is the difference between a string and an array?

623


what is the height of tree if leaf node is at level 3. please explain

1587


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

640


What is indirection in c?

612


What does the error message "DGROUP exceeds 64K" mean?

718


What are the restrictions of a modulus operator?

623


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

650


a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

627