Skip to main content

BASIC OF C PROGRAM ( Computer )

Stdio-
(1) It stand for standard input output.
(2) It is a collection of predifined function/methods.
(3) It is also called library of C.

Include-
(1) To include the hedear file into the program.

#-
(1) It is called preprocessor.
(2) It include the library of c into the program before the execution of program.

Conio-
(1) It stand for console input output.
(2) It is used to show the outputon console window.

Void-
(1) It is a keyword.
(2) It indicates that no of value is being returned by the function.
(3) If we use any other keyword like int,float,char etc in place of void then we will use return keyword.

Comments