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 - Persian
Outline: حلقه ها حلقه ها - do-while و while ساختار حلقه های - do-while و while مقایسه حلقه های - for ساختار - for حلقه - اشتباهات -
Outline: (Arrays) ارایه ها آرایه چیست - 1D آرایه های - arrays ساختار بزای اعلام - data type array_name [size] ; : مثال -- arrays ساختار برای مقداردهی اولیه به - data type array_na..
Outline: 2-D Arrays کار کردن با دو دی آرایه چیست arrays محدوده - 2D Array ساختار برای اعلام - data type array_name[row][column] ; : مثال -- 2D Array ساختار برای مقداردهی اولیه به - ..
Outline: (Strings) رشته ها چیست string - string ساختار برای اعلام - string ساختار برای مقداردهی اولیه به - از صفحه کلید string خواندن -
Outline: string عملگرهای کتابخانه چیست string عملگرهای کتابخانه string انواع عملگرهای کتابخانه -strcpy -strlen -strcmp -strcat
Outline: Structures کار کردن با مقدمه - Structure ساختار - اعلام و مقداردهی اولیه - Structure اعلام متغیر - Structure دسترسی به متغیرهای -
Outline: (Pointers) فهمیدن اشاره گرها مقدمه - ساختار اشاره گر - int *iptr ; : مثال -- اعلام - int a ; : مثال -- (integer a) int *aptr ; (aptr* به عدد صحیح pointer) aptr = &a; (a ..
Outline: Function call Function calls انواع - با مقدار function انتقال - (reference) با ارجاع function انتقال -
Outline: C فایلها در عملگرهای رسیدگی فایلها - باز کردن فایل و بستن فایل - fopen, fclose : مثال -- خواندن دادهها از فایل -
Foss : C and Cpp - Punjabi
Outline: 1) First C Program -Header Files --example: #include <stdio.h> -main() -Curly braces -printf() -semicolon ; -Compiling a C program --example: gcc filen..
Outline: First C++ Program -Header files --example: #include <iostream> -main() -Curly braces -cout<< -semicolon ; -Compiling a C++ program --example: g++ filen..
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..
Outline: C ਅਤੇ C++ ਵਿੱਚ ਫੰਕਸ਼ਨ’’’ ਉੱਤੇ ਸਪੋਕਨ ਟਿਊਟੋਰਿਅਲ ਵਿੱਚ ਤੁਹਾਡਾ ਸਵਾਗਤ ਹੈ| ਇਸ ਟਿਊਟੋਰਿਅਲ ਵਿੱਚ, ਅਸੀਂ ਸਿਖਾਂਗੇ ਕਿ
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 =..
Outline: Check the conditions in a program -What are Statements. -Syntax for if and -If-else Statement -Errors
Outline: Nested if and switch statement -Nested if statement. -Switch statement. -Syntax for nested-if statement -Syntax for switch statement -break statement -Compariso..
Outline: Increment and Decrement Operators -Increment Operator --example: ++ -Postfix increment --example: a++ -Prefix increment --example: ++a -Decrement Operator ..
Outline: Arithmetic Operators -Arithmetic Operators -Addition Operator --example: a + b -Subtraction Operator --example: a - b -Multiplication Operator --example: a *..
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 -Gr..
Outline: Logical Operators -And && -Or || -Not !