C language is a general-purpose, procedural computer programming language. In 1972, Dennis Ritchie designed and developed the C language at Bell Telephone Laboratories in order to port and develop the UNIX operating system.

The C language is a widely used computer language that is as popular as the Java programming language, and both are widely used among modern software programmers.

C constant syntax

Constant values ​​are fixed values ​​that do not change during program execution. These fixed values ​​are also called literals.

Constants can be any basic data type, such as integer constants, floating point constants, character constants, or string literals, as well as enumeration constants.

Constants are like regular variables, except that the value of a constant cannot be modified after it is defined.

C constant example

#include <stdio.h>
 int main(){
   printf("Hello\tWorld\n\n"); 
   return 0;}