What is
Keyword
In C Programming
In this video, we will learn about keywords
Keywords are predefined, reserved words used in c programming language that
have a special meaning. Keywords are part of the syntax .
These reserved words not be used as constants or variables or any
other identifier names.
int temparature;
Here, int is a keyword that indicates ' temparature ' is a variable of type integer.
Example
In this video, we will learn about keywords
As C is a case sensitive language, all keywords must be written in
lowercase. Here is a list of all keywords allowed in ANSI C.
int temparature;
float area;
Here, int and float is in lower case
.
Example
Keywords in C Language
auto double int struct
break else long switch
case enum register typedef
char extern return union
continue for signed void
do if static while
default goto sizeof volatile
const float short unsigned
Keywords in C Language
Keyword in program
#include <stdio.h>
int main()
{
float f=6.6;
printf(“ %fn”,f);
return 0;
}
Keywords in this
program
1. int
2. float
3. return
To know about Identifier
check another video
Thank You

What is keyword in c programming

  • 1.
  • 2.
    In this video,we will learn about keywords Keywords are predefined, reserved words used in c programming language that have a special meaning. Keywords are part of the syntax . These reserved words not be used as constants or variables or any other identifier names. int temparature; Here, int is a keyword that indicates ' temparature ' is a variable of type integer. Example
  • 3.
    In this video,we will learn about keywords As C is a case sensitive language, all keywords must be written in lowercase. Here is a list of all keywords allowed in ANSI C. int temparature; float area; Here, int and float is in lower case . Example
  • 4.
    Keywords in CLanguage auto double int struct break else long switch case enum register typedef char extern return union continue for signed void do if static while default goto sizeof volatile const float short unsigned Keywords in C Language
  • 5.
    Keyword in program #include<stdio.h> int main() { float f=6.6; printf(“ %fn”,f); return 0; } Keywords in this program 1. int 2. float 3. return
  • 6.
    To know aboutIdentifier check another video Thank You