C programing intro

What is C?

  • C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972.

(C হল একটি সাধারণ-উদ্দেশ্য প্রোগ্রামিং ভাষা যা 1972 সালে বেল ল্যাবরেটরিতে ডেনিস রিচি তৈরি করেছিলেন।)

  • It is a very popular language, despite being old.

(পুরানো হওয়া সত্ত্বেও এটি একটি খুব জনপ্রিয় ভাষা।)

  • C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

(সি দৃঢ়ভাবে UNIX সাথে যুক্ত, কারণ এটি UNIX অপারেটিং সিস্টেম লেখার জন্য তৈরি করা হয়েছিল।)

Why Learn C?

  • It is one of the most popular programming language in the world.

(এটি বিশ্বের অন্যতম জনপ্রিয় প্রোগ্রামিং ভাষা)

  • If you know C, you will have no problem learning other popular programming languages such as Java, Python, C++, C#, etc, as the syntax is similar.

(আপনি যদি সি জানেন তবে অন্যান্য জনপ্রিয় প্রোগ্রামিং ভাষা যেমন জাভা, পাইথন, সি++, সি#, ইত্যাদি শিখতে আপনার কোন সমস্যা হবে না, কারণ সিনট্যাক্স একই রকম।)

  • C is very fast, compared to other programming languages, like Java and Python.

(জাভা এবং পাইথনের মতো অন্যান্য প্রোগ্রামিং ভাষার তুলনায় সি খুব দ্রুত।)

  • C is very versatile; it can be used in both applications and technologies.

(সি খুব বহুমুখী; এটি অ্যাপ্লিকেশন এবং প্রযুক্তি উভয় ক্ষেত্রেই ব্যবহার করা যেতে পারে)

Difference between C and C++

  • C++ was developed as an extension of C, and both languages have almost the same syntax.

(C++,C এর একটি এক্সটেনশন হিসাবে বিকশিত হয়েছিল এবং উভয় ভাষাতেই প্রায় একই সিনট্যাক্স রয়েছে)

  • The main difference between C and C++ is that C++ support classes and objects, while C does not.

(C এবং C++ এর মধ্যে প্রধান পার্থক্য হল C++ ক্লাস এবং অবজেক্টকে সমর্থন করে, যখন C করে না)

Code Blocks