Operators

এই ছোট ভিডিওতে আমরা C প্রোগ্রামিং এর Operators এর একটি সংক্ষিপ্ত পরিচিতি দেখব। Arithmetic Operators এবং Operator Precedence এই ভিডিওতে আমরা C Arithmetic Operators এবং Operator Precedence বাংলায় সহজভাবে ব্যাখ্যা করেছি। CodeBlocks দিয়ে সরাসরি উদাহরণ কোড দেখানো হয়েছে যাতে সহজে বুঝা যায়। ...

scanf দিয়ে Input নেওয়া

scanf ব্যবহার করে কিভাবে বিভিন্ন ধরনের input নিতে হয় – যেমন integer, float, character, আর string (char array)। পুরো ভিডিওটি বাংলায় ব্যাখ্যা করা হয়েছে, যাতে নতুনরা সহজে বুঝতে পারে। What you’ll learn in this video: Understanding the problem and analyzing the question Taking integer input in C Taking float input in C Taking char input in C Reading strings / char arrays Combining multiple inputs in one program Handling special cases in printing Practice exercises to reinforce learning ভাষায় input নেওয়ার basic থেকে শুরু করে multiple input handling পর্যন্ত clear idea পাবেন।

Variables, Constants & printf Format Specifiers

ভেরিয়েবল, কনস্ট্যান্ট এবং printf ফরম্যাট স্পেসিফায়ার নিয়ে। এই ভিডিওটি বিশেষভাবে বাংলা ভাষাভাষী শিক্ষার্থীদের জন্য তৈরি। What you’ll learn in this video: কিভাবে ভেরিয়েবল ডিক্লেয়ার এবং ইনিশিয়ালাইজ করা যায় কোন নামগুলো ভেরিয়েবলের জন্য গ্রহণযোগ্য int, float, double, long double ডেটা টাইপের পার্থক্য printf ফরম্যাট স্পেসিফায়ার ব্যবহার করে আউটপুট প্রদর্শন কনস্ট্যান্ট এবং const কীভাবে ব্যবহার করবেন ভেরিয়েবলে মান পুনরায় বরাদ্দ (reassign) করার নিয়ম

C Variable Define & Naming Rules

এই ভিডিওতে আমরা শিখব C Programming এ কিভাবে Variable Define করতে হয় এবং Naming Rules বা ভ্যারিয়েবলের নামকরণের নিয়মগুলো। What you’ll learn in this video: Variable কীভাবে কাজ করে Variable Define করার নিয়ম Naming Rules (কোন নামগুলো ব্যবহার করা যাবে, কোনগুলো যাবে না) Common ভুল এবং সেগুলো কিভাবে এড়ানো যায়

DataType Selection in C | ডেটা টাইপের মূল ধারণা

কম্পিউটারের মেমোরিতে সব কিছু 0 ও 1 হিসেবে সংরক্ষিত থাকে, তবে আমাদের কেন ডেটা টাইপ নির্বাচন করতে হয়? What you’ll learn in this video: What a data type is and why it’s important Basic C data types: char, int, float, double How to choose the right data type for different values Differences between char, string, and decimal numbers Simple practical examples explained clearly

কেন শুধু Double ব্যবহার করবো না? Data Types, Memory, Float vs Double

এই ভিডিওতে আমরা আলোচনা করবো C Programming Language-এ Data Types নিয়ে। 💻 বিশেষ করে Char, Int, Float, Double কিভাবে কম্পিউটার মেমোরিতে store হয়, তাদের range, precision, bit-size এবং signed vs unsigned কিভাবে কাজ করে সেটা দেখানো হয়েছে। What you’ll learn in this video: Memory & Binary Representation (0 & 1 দিয়ে কিভাবে ডাটা রাখা হয়) Char এর ASCII Value (উদাহরণ: ‘H’, ‘5’) Integer (short, int, long) এর range & storage Float vs Double → precision, bit structure (sign, exponent, mantissa) কেন শুধু Double use করলে সমস্যা হয়? (hardware limitation, efficiency, performance) Long Double & Special Cases Embedded/IoT Device এ Data Type Selection

Main File & Main Function Explained

This metaphor will help you understand programming concepts more easily and remember them better. What you’ll learn in this video: How to compare a project folder with house land Why main.c works like the main gate of a program How the main function is like the first room you enter Key features of C files (.c extension) Importance of #include [stdio.h], int main(), and return 0;