This tutorial series is created using gcc 4.6.1 Ubuntu 11.10. Powerful features, simple syntax, and portability make C a preferred language among programmers for business and industrial applications. Read more
Foss : C and Cpp - Assamese
Outline: 1. কন্ডিচনেল ষ্টেতমেন্ত আউতলাইন (Conditional statements Outline): এটা প্ৰোগ্ৰামত চৰ্ত সমূহ পৰীক্ষা কৰা (Check the conditions in a program) ষ্টেতমেন্ত বিলাক কি হয় (What are Statem..
Outline: নেষ্টেদ ইফ(nested-if) & চুইত্চ ষ্টেটমেন্ত(switch statement)আউতলাইন(Outline): নেষ্টেদ ইফ ষ্টেটমেন্ত (Nested if statement) চুইত্চ ষ্টেটমেন্ত(Switch statement) নেষ্টেদ ইফ ষ্টেটমেন..
Outline: ইনক্ৰিমেন্ত এন্ড ডিক্ৰিমেন্ত অপাৰেতৰ(Increment and Decrement Operators)আউতলাইন(Outline): ইনক্ৰিমেন্ত অপাৰেতৰ (Increment Operator) উদাহৰণ: ++(example: ++) পষ্টফিক্স ইনক্ৰিমেন্ত (..
Outline: আৰিথমেটিক অপাৰেতৰচ (Arithmetic Operators)আউতলাইন(Outline): আৰিথমেটিক অপাৰেতৰচ (Arithmetic Operators) এদিচন অপাৰেতৰ(Addition Operator) উদাহৰণ: a + b(example: a + b) ছাবৰ্ষ্টেকত্..
Outline: ৰিলেচনেল অপাৰেতৰচ(Relational Operators)আউতলাইন(Outline): দাব’ল ইকুৱেল তু (Double Equal to) উদাহৰণ: a == b(example: a == b) নট ইকুৱেল তু (Not equal to) উদাহৰণ: a != b(example: ..
Outline: ল’জিকেল অপাৰেতৰচ (Logical Operators)আউতলাইন(Outline): এন্ড && (And &&) অৰ || (Or ||) নট ! (Not !)
Outline: লোপচ (Loops) -লোপচ (Loops) -হোৱাইল লোপ আৰু ডু-হোৱাইল লোপৰ বাবে গাঠণি (Syntax for while and do-while loop) -হোৱাইল আৰু ডু-হোৱাইল লোপৰ তুলনা (Comparison of while and do-while l..
Outline: এৰে’জ (Arrays) -এৰে’জ কি হয় (What are arrays) -1-D এৰে’জ (Arrays) -এৰে’জৰ ডিক্লেয়াৰেচনৰ বাবে গাঠণি (Syntax for Declaration of arrays) --উদাহৰণ: data type(দাতা টাইপ) array(এ..
Outline: 2-D এৰে’জৰ সৈতে কামকৰা (Working with 2-D Arrays ) -2-D এৰে’জ কি হয় (What are 2-D Arrays) -এৰে’জৰ পৰিসৰ (Range of arrays) -2-D এৰে’জৰ ডিক্লেয়াৰেচনৰ বাবে গাঠণি (Syntax for Decla..
Outline: ষ্ট্ৰিংচ (Strings) -ষ্ট্ৰিং এটা কি হয় (What is a string) -ষ্ট্ৰিং এটা ডিক্লেয়াৰ কৰাৰ বাবে গাঠণি (Syntax for declaring a string) -ষ্ট্ৰিং এটা প্ৰাৰম্ভণ কৰাৰ বাবে গাঠণি (Syntax..
Outline: ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ (String Library Functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচ কি হয় (What are string library functions) ষ্ট্ৰিং লাইব্ৰেৰী ফাংচনচৰ প্ৰকাৰ (Types of string library..
Outline: ষ্ট্ৰাকচাৰচৰ সৈতে কামকৰা (Working with Structures) -পৰিচয় (Introduction) -ষ্ট্ৰাকচাৰচৰ গাঠণি (Syntax of structures) -ডিক্লেয়াৰেচন আৰু প্ৰাৰম্ভণ (Declaration and initializatio..
Outline: আন্দাৰষ্টেন্দিং পইন্টাৰচ (Understanding Pointers) -পৰিচয় (Introduction) -পইন্টাৰৰ গাঠণি (Syntax of Pointer) --উদাহৰণ: int *iptr; -ডিক্লেয়াৰেচন (Declaration) --উদাহৰণ: int..
Outline: ফাংচন ক’ল (Function call ) -ফাংচন ক’লচৰ প্ৰকাৰ (types of function calls ) -ফাংচন পাচ বাই ভেলো (function pass by value) -ফাংচন পাচ বাই ৰেফাৰেনচ (function pass by reference)
Outline: ফাইলচ ইন C (Files in C) -ফাইল হেন্দলিং ফাংচনচ (File handling functions) -ফাইল এটা খোলা ফাইল এটা বন্ধ কৰা (Opening a File closing a file) --উদাহৰণ: fopen, fclose -ফাইল এটাৰ..
Foss : C and Cpp - Bengali
Outline: First C Program -Header Files --example: #include -main() -Curly braces -printf() -semicolon ; -Compiling a C program --example: gcc filename.c -o output parameter -Execut..
Outline: First C++ Program -Header files --example: #include -main() -Curly braces -cout<< -semicolon ; -Compiling a C++ program --example: g++ filename.cpp -o output parameter -Ex..
Outline: C এবং C ++ এ টোকেনস -ডেটা টাইপস, কনস্ট্যান্টস, আইডেন্টিফায়ারস -কীওয়ার্ডস --যেমন: if, break, else -কনস্ট্যান্টস -ডেটা টাইপস --যেমন: int, float, char..
Outline: ফাংশন্স -ফাংশন কি ফাংশনের জন্য সিনট্যাক্স আর্গুমেন্টের সাথে ফাংশন - যেমন: return-type function-name(parameter); আর্গুমেন্ট ছাড়া ফাংশন - যেমন: r..
Outline: Scope of Variables -Introduction -Syntax of declaring a variable --example: data-type var-name; -Syntax for initializing a variable --example: data-type var-name = value; -Sc..