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 does the format %10.2 mean when included in a printf statement?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is a Deque?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
What is the method to save data in stack data structure type?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
what is the different between data structure and data type?
A stack can be implemented only using array?if not what is used?
What is sizeof array?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50