C keywords
Welcome to c programming learning
Last post program output is :- a
C Programming keywords - points:
1. Keywords in c are predefined words in c
2. All keywords are in lower case only. Because c language is case sensitive.
3. These keywords can't be used as variables
4. Keywords in c also called as reserved words
5. In c we have 32 keywords.
List of 32 keywords in c:-
1.int
2.float
3.double
4.long
5.short
6.extern
7.register
8.static
9.auto
10.if
11.else
12.switch
13.for
14.struct
15.union
16.do
17.case
18.default
19.while
20.break
21.return
22.signed
23.unsigned
24.typedef
25.char
26.const
27.continue
28.goto
29.void
30.sizeof
31.volatile
32.enum
These are the keywords of c language.
Below I am giving one program please comment output below..
#include<studio.h>
void main()
{
int a=2;
printf("%d",a++);
}
Output give you in next post.
Comments
Post a Comment