how many keywords do C compile?
Answers were Sorted based on User's Feedback
Answer / gandhi priyank
there are 32 keywords in c language ...............
| Is This Answer Correct ? | 72 Yes | 9 No |
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 |
Answer / naresh lingampally
In general we use 32/36 keywords..........
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / vijay.m
there are 36 keywords in c language ...........
| Is This Answer Correct ? | 6 Yes | 30 No |
write a program to print data of 5 five students with structures?
program to find the roots of a quardratic equation
What are the storage classes in C?
what is ram?
What are the types of i/o functions?
Can we increase size of array in c?
What are the different types of constants?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What is c value paradox explain?
Can we add pointers together?
What is the difference between far and near in c?
What is c system32 taskhostw exe?