Basic syntax and functions from the C programming language.
It is used to show output on the screen
It is used to take input from the user
A comment is the code that is not executed by the compiler, and the programmer uses it to keep track of the code.
The data type is the type of data
Represents the absence of the type
Conditional statements are used to perform operations based on some condition.
It allows a variable to be tested for equality against a list of values (cases).
Iterative statements facilitate programmers to execute any block of code lines repeatedly and can be controlled as per conditions added by the programmer.
break keyword inside the loop is used to terminate the loop
continue keyword skips the rest of the current iteration of the loop and returns to the starting point of the loop
Functions are used to divide an extensive program into smaller pieces. It can be called multiple times to provide reusability and modularity to the C program.
Pointer is a variable that contains the address of another variable,
An array is a collection of data items of the same type.
A string is a 1-D character array terminated by a null character ('\0')
It allows you to enter multi-word string
It is used to show string output
The structure is a collection of variables of different types under a single name. Defining structure means creating a new data type.