Basic syntax

; (semicolon)- In every program of a C in must terminated by (;), Hence without semicolon the compiler can't run the C program.

C program is generally made by the tokens which is also called as the building blocks of an program.

Keywords: The keywords are reserved word in C language, reserved keywords will never give you authority to make a variable or a file name upon it, because it's already reserved by the C.
here are 32 keywords in C👇

auto

double

int

struct

Break

Else

Long

Switch

Case

Enum

Register

Typedef

Char

Extern

Return

Union

Const

Float

Short

Unsigned

Continue

For

Signed

Void

Default

Goto

Sizeof

Volatile

do

if

static

while

C is a case sensitive programing language Ex- (H) is not = (h).

C is basically made by 👉 Keyword, Constant, Identifier, String litral and symbols.


Comments

Popular Posts