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

How do you view the path?

660


What is bubble sort technique in c?

586


Tell me what are bitwise shift operators?

653


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

713


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1887






What is the value of h?

587


What is structure of c program?

599


List the difference between a 'copy constructor' and a 'assignment operator' in C?

637


Why do we use header files in c?

573


What does %c mean in c?

643


How can you access memory located at a certain address?

663


Why is c called c?

620


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

760


The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration

625


Explain how to reverse singly link list.

603