ANIMATE 2025 is here! 2D/3D animation hackathon using Synfig Studio and Blender. For more details, Click here!

Search Tutorials

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


About 9704 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : C and Cpp - Bengali

Outline: Arithmetic Operators -Arithmetic Operators -Addition Operator --example: a + b -Subtraction Operator --example: a - b -Multiplication Operator --example: a * b -Division Op..

Basic

Foss : C and Cpp - Bengali

Outline: Relational Operators -Double Equal to --example: a == b -Not Equal to --example: a != b -Greater Than --example: a > b -Less Than --example: a < b -Greater than Equal To ..

Basic

Foss : C and Cpp - Bengali

Outline: লজিক্যাল অপারেটর -And && -Or || -Not !

Basic

Foss : C and Cpp - Bengali

Outline: Loops -Loops -while এবং do-while লুপের সিনট্যাক্স -while এবং do-while লুপের তুলনা -for লুপের সিনট্যাক্স -Errors

Intermediate

Foss : C and Cpp - Bengali

Outline: Arrays -Arrays কি -1-D Arrays -Array এর ঘোষণার জন্য সিনট্যাক্স - উদাহরণস্বরূপ: data type array_name [size]; -Array এর আরম্ভীকরণের জন্য সিনট্যাক্স - উদাহরণস্বরূপ: data type a..

Intermediate

Foss : C and Cpp - Bengali

Outline: 2-D Arrays এর সাথে কাজ -2-D Arrays কি -Arrays এর রেঞ্জ -2-D arrays এর ডিক্লেরেশননের জন্য সিনট্যাক্স --যেমন: data type array_name[row][column]; -2-D arrays..

Intermediate

Foss : C and Cpp - Bengali

Outline: Strings -Strings কি -String এর ঘোষণার জন্য সিনট্যাক্স -String এর আরম্ভীকরণের জন্য সিনট্যাক্স - কীবোর্ড থেকে স্ট্রিং পড়া

Intermediate

Foss : C and Cpp - Bengali

Outline: স্ট্রিং লাইব্রেরী ফাংশনস -স্ট্রিং লাইব্রেরী ফাংশনস কি -স্ট্রিং লাইব্রেরী ফাংশনসের ধরন -Strcpy -Strlen -Strcmp -Strcat

Intermediate

Foss : C and Cpp - Bengali

Outline: স্ট্রাকচারসের সাথে কাজ -ভূমিকা -স্ট্রাকচারের সিনট্যাক্স -ডিক্লেরেশন এবং ইনিসিয়েলাইসেশন -স্ট্রাকচার ভ্যারিয়েবলের ডিক্লেরেশন -স্ট্রাকচার ভ্যারিয়েবল এক্সেস..

Advanced

Foss : C and Cpp - Bengali

Outline: পয়েন্টারস বোঝা -ভূমিকা -পয়েন্টারের সিনট্যাক্স --যেমন: int *iptr; -ডিক্লেরেশন --যেমন: int a; (ইন্টিজার a) int *aptr; (ইন্টিজার *aptr এ পয়..

Advanced

Foss : C and Cpp - Bengali

Outline: কল ফাংশন -কল ফাংশনের ধরণ -মান দ্বারা পাস করা ফাংশন -রেফারেন্স দ্বারা পাস করা ফাংশন

Advanced

Foss : C and Cpp - Bengali

Outline: C তে files -ফাইল হ্যান্ডলিং ফাংশন -ফাইল খোলা ফাইল বন্ধ করা - উদাহরণস্বরূপ: fopen, fclose -ফাইল থেকে ডেটা পড়া

Advanced

Foss : C and Cpp - English

Outline: 1) First C Program -Header Files --example: #include <stdio.h> -main() -Curly braces -printf() -semicolon ; -Compiling a C program --example: gcc filen..

Basic

Foss : C and Cpp - English

Outline: First C++ Program -Header files --example: #include <iostream> -main() -Curly braces -cout<< -semicolon ; -Compiling a C++ program --example: g++ filen..

Basic

Foss : C and Cpp - English

Outline: 3) Tokens in C and C++ -Data types, constants, identifiers -Keywords --example: if, break, else -Constants -Data types --example: int, float, char, double -F..

Basic

Foss : C and Cpp - English

Outline: Functions -What is a function -Syntax for declaration of a function -Function with arguments --example: return-type function-name(parameter); -Function without ar..

Basic

Foss : C and Cpp - English

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 =..

Basic

Foss : C and Cpp - English

Outline: Check the conditions in a program -What are Statements. -Syntax for if and -If-else Statement -Errors

Basic

Foss : C and Cpp - English

Outline: Nested if and switch statement -Nested if statement. -Switch statement. -Syntax for nested-if statement -Syntax for switch statement -break statement -Compariso..

Basic

Foss : C and Cpp - English

Outline: Increment and Decrement Operators -Increment Operator --example: ++ -Postfix increment --example: a++ -Prefix increment --example: ++a -Decrement Operator ..

Basic