C++ Bangla Tutorials 74 : constant variable

preview_player
Показать описание
🔴 In this video, I will discuss constant variables in C++.

⭐️ Video Contents ⭐️
⌨️ (00:00) Introduction
⌨️ (00:15) constant variables
⌨️ (02:45) Outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? Checkout following playlists :

#anisul_islam #programming #c_programming #c++
#anisul_islam_c #cplusplus #cplusplusprogramming #bangla
Рекомендации по теме
Комментарии
Автор

Ei video gulo bananor jonno onek shukria..

rhsiam
Автор

Sir, , mohan prithibite sobai hoy na..Guti kisu people hoy..
Apni Oi people ar modde akjon...
Apnar Joy hobe Insha-allah.

jonayethossain
Автор

#include <iostream>

using namespace std;

int main()
{
// // Variable: Non-Constant
// int x=10;
// x=20;
// Variable: Non-Constant
const int x=10; // This variable cannot be changed

cout<<"X= "<<x;
return 0;
}

mdrezaulkarim