DEV Community

Abdumutal
Abdumutal

Posted on

C++ dasturlash tili | 2

Salom!

Siz C++ haqidagi barcha malumotlarni w3schools dan olishingiz mumkin link ni ustiga bosangiz u yerda hamma dasturlash tiliga oid darslar mavjud u yerda css; html; c/c++; python; java; php; java/javaScript ... va boshqa dasturlash tillarini o'rganishingiz mumkin.

C++ asoslari

C++ da code yozish avvalo siz:

  • Kodni tahrirlash va kompilyatsiya qilish uchun IDE (Integrated Development Environment) ishlatiladi.

  • Mashhur IDE-larga Code::Blocks, Eclipse va Visual Studio kiradi. Bularning barchasi bepul va ular C++ kodini tahrirlash va disk raskadrovka qilish uchun ishlatilishi mumkin

  • Agar siz bularni o'rnata olmasangiz link ustiga bosing.

    C++ code

    C++dagi eng osson code mana shu:

#include <iostream>
using namespace std;
int main(){
cout << "Hello world!" << endl;
return 0;
}
Enter fullscreen mode Exit fullscreen mode

Bu yerdagi mana bu narsa

#include <iostream>
Enter fullscreen mode Exit fullscreen mode

C++ tili kutubxonalari hisoblanadi
Bu esa

cout << "Hello world!" << endl;
Enter fullscreen mode Exit fullscreen mode

bu esa dastur.

  • endl bu endline hisoblanadi!

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay