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 the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Write a c program to demonstrate Type casting in c?
how we can make 3d venturing graphics on outer interface
What is the difference between functions getch() and getche()?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
Are the outer parentheses in return statements really optional?
What is a double c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Why doesn't the code "a[i] = i++;" work?
A stack can be implemented only using array?if not what is used?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Why string is used in c?