Keywords are predefined, reserved words used in programming that have special meanings to the compiler. Keywords are part of the syntax and they cannot be used as an identifier.
Every C program has a primary (main) function that must be named main. If your code adheres to the Unicode programming model, you can use the wide-character version of main.
Comment about the program should be enclosed within /* */. Any number of comments can be written at any place in the program. For example, a comment can be written before the statement.
The printf() function are used for output in C language. printf function are inbuilt library functions, defined in stdio.h (header file). The printf() function is used for output. It prints the given statement to the console.
In C, Instructions are the commands in the program that instructs the compiler to do certain action and it gives the instruction to the compiler on how to get results of the program.
Type Declaration instruction is used to declare the type of variables to be used in a C program. Any variable must be declared before using it. This declaration is done using type declaration instruction.
Control flow from one command to the next. Nonetheless, in most C programs the programmer may want to skip instructions or repeat a set of instructions repeatedly when writing logic. This can be referred to as sequential control flow.