DEV Community

Umid2008
Umid2008

Posted on

Identificator(C++)

Hello. Today we will talk about Identificator and Constanta. So let's begin! Identificator means naming variables. For example if we don't name our variable then we can't use and summon it. It's very importable thing. Naming variables is very easy. We need just write the name of variable and give the value. That's all with Identificators!

int main1() {

int Number = 1;

cout << Number << endl;

  return 0;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)