Hot Posts

keywords reserved word in c++ | lecture 2 | Writing first program of C++

 


 keywords reserved word in C++

Keyword is a predefined or reserved word in C++ library with a fixed meaning and used to perform an internal operation. C++ Language supports more than 64 keywords.

Keywords are those words whose meaning is already defined by Compiler. These keywords cannot be used as an identifier. Note that keywords are the collection of reserved words and predefined identifiers. Predefined identifiers are identifiers that are defined by the compiler but can be changed in meaning by the user.

Every Keyword exists in lower case latter like auto, break, case, const, continue, int etc.

writing our first program hello world:

#include<iostream>
using namespace std;
int main()
{
cout<<"hello world";
}


You can watch video for better understanding:



In this course we will learn about the basic concepts of c++, OOPS, solve problems, Projects. You can also download the free source code also. It will be help full for the student who interest in programing.
complete playlist :https://www.youtube.com/playlist?list... This course will be free of cost. Later on we will start other courses like web development on this channel. Join us from today. Subscribe our channel for the latest updates Thanks! #cpp #coding #gate #programming#codehelpbymustehsan


Post a Comment

1 Comments