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 |
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
Did c have any year 2000 problems?
Can main () be called recursively?
What is the difference between File pointer and Internal Charecter Pointer?
What are the key features of C?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
What is the difference between constant pointer and constant variable?
What is a c token and types of c tokens?
how to introdu5ce my self in serco
Why can’t constant values be used to define an array’s initial size?
i want to know aptitude questions,technical questions
find the sum of two matrices and WAP for it.