assigment operator haqida malumot

thequvonc

thequvonc

Posted on December 23, 2022

assigment operator haqida malumot

#include <iostream>
using namespace std ;
int main() {

int a = 10;
  string ism = "davron";

  cout << a << endl;
  cout << ism << endl; 

  a=20;
  ism = "quvonchbek";
  cout << a << endl;
  cout << ism;

  return 0;
  }

Enter fullscreen mode Exit fullscreen mode

biz bugun assigment opperator haqida ilk malumot egalladik!

bunda birinchi navbatta int a da a ni yani biron bir sonni oqib olishimiz zarur!

int a = 10;
  string ism = "davron";

Enter fullscreen mode Exit fullscreen mode

va biron bir soz kiritishimiz kerak

biz int a da yozgan sonimiz va xarifimiz masalan aniq son boladigan bolsa (10) buni biz osha qismda bir martta ishlatsak boladi

keyingi qatorda biz bu int a dagi sonimizni boshqa bir son ishtirokida amalga oshirishimioz mumkin

int a = 10;
  string ism = "davron";
  cout << a << endl;
  cout << ism << endl; 

  a=20;
  ism = "quvonchbek";
  cout << a << endl;
  cout << ism;

Enter fullscreen mode Exit fullscreen mode

bu yerdagi yozgan cod imizni console dagi javobi

10
davron
20
quvonchbek

boladi!

albatta oxirida doimgidek

  return 0;
  }
Enter fullscreen mode Exit fullscreen mode

tugatish funksiyasini yozib qoyamiz!

@dawroun

💖 💪 🙅 🚩
thequvonc
thequvonc

Posted on December 23, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related