how many keywords do C compile?

Answers were Sorted based on User's Feedback



how many keywords do C compile?..

Answer / gandhi priyank

there are 32 keywords in c language ...............

Is This Answer Correct ?    72 Yes 9 No

how many keywords do C compile?..

Answer / 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

how many keywords do C compile?..

Answer / chhatrala tejal n.

32

Is This Answer Correct ?    9 Yes 3 No

how many keywords do C compile?..

Answer / sherab gyeltshen

32...

Is This Answer Correct ?    3 Yes 2 No

how many keywords do C compile?..

Answer / iyswarya

32

Is This Answer Correct ?    2 Yes 2 No

how many keywords do C compile?..

Answer / naresh lingampally

In general we use 32/36 keywords..........

Is This Answer Correct ?    1 Yes 4 No

how many keywords do C compile?..

Answer / vijay.m

there are 36 keywords in c language ...........

Is This Answer Correct ?    6 Yes 30 No

Post New Answer

More C Interview Questions

Why main is not a keyword in c?

0 Answers  


please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics

0 Answers  


How many identifiers are there in c?

0 Answers  


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

0 Answers  






how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?

0 Answers   Gopaljee, TCS,


Explain what is a const pointer?

0 Answers  


How many keywords are there in c?

0 Answers  


What is the memory allocated by the following definition ? int (*x)();

2 Answers   ADITI,


Why is c called "mother" language?

0 Answers  


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

0 Answers  


IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.

5 Answers   TCS,


Categories