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 - Manipuri
Outline: Outline: Loops -Loops -Syntax for while and do-while loop -Comparison of while and do-while loop -Syntax for -for loop -Errors
Outline: Outline: Arrays -What are arrays -1-D Arrays -Syntax for Declaration of arrays --example: data type array_name [size]; -Syntax for Initialization of arrays --e..
Outline: Outline: Working with 2-D Arrays -What are 2-D Arrays. -Range of arrays -Syntax for Declaration of 2-D arrays --example: data type array_name[row][column]; -Synta..
Outline: Outline: Strings -What is a string -Syntax for declaring a string -Syntax for initializing a string -To read a string from keyboard
Outline: Outline: String Library Functions What are string library functions. Types of string library functions -Strcpy -Strlen -Strcmp -Strcat
Outline: Outline: Working with Structures -Introduction -Syntax of structures -Declaration and initialization -Declaration of structure variable -Accessing structure varia..
Outline: Outline: Understanding Pointers -Introduction -Syntax of Pointer --example: int *iptr; -Declaration --example: int a; (integer a) int *aptr; (pointer to ..
Outline: Outline: Function call -types of function calls -function pass by value -function pass by reference
Outline: Outline: Files in C -File handling functions -Opening a File closing a file --example: fopen, fclose -Reading data from a File
Foss : C and Cpp - Marathi
Outline: 1) First C Program -Header Files --example: #include -main() -Curly braces -printf() -semicolon ; - C प्रोग्राम चे संकलन. --उदाहरणार्थ :..
Outline: First C++ Program -Header files --example: #include -main() -Curly braces -cout<< -semicolon ; -C++ program चे संकलन --example: g++ filename.cpp -o output parameter - C++..
Outline: 3)C आणि C++ मधील Tokens --डेटा टाइप्स, कॉन्स्टेंट्स, आइडेंटिफाइयर्स -कीवर्ड्स --उदाहरणार्थ : if, break, else -कॉन्स्टेंट्स --डेटा टाइप्स, --उदाहरणार्थ : int, float, char, d..
Outline: फंक्शन म्हणजे काय. फंक्शन च्या declaration साठी syntax आर्ग्युमेंट्स सहित फंक्शन उदाहरणार्थ :return-type function-name(parameter); आर्ग्युमेंट्स नसलेले फंक्शन उदाहरणार्थ..
Outline: Scope of Variables -परिचय -एक व्हेरिएबल घोषित करण्याचा सिंटॅक्स. --उदाहरणार्थ : data-type var-name; -एक व्हेरिएबल सुरू करण्यासाठी सिंटॅक्स --उदाहरणार्थ: data-type var-name = ..
Outline: प्रोग्रॅम मधील कंडीशन्स तपासणे स्टेट्मेंट्स, म्हणजे काय - if and, साठी सिंटॅक्स -If-else Statement, -एरर्स
Outline: Nested if and switch स्टेट्मेंट -Nested if स्टेट्मेंट्स साठी सिंटॅक्स . -Switch स्टेट्मेंट. - nested-if -switch स्टेट्मेंट साठी सिंटॅक्स . -break स्टे..
Outline: Increment आणि Decrement ऑपरेटर्स -Increment ऑपरेटर्स --उदाहरणार्थ : ++ -Postfix increment --उदाहरणार्थ : a++ -Prefix increment --उदाहरणार्थ : ++a -Decrement Operator --उदा..
Outline: Arithmetic Operators -Arithmetic Operators - ऑपरेटर्स ची बेरीज --उदाहरणार्थ : a + b -ऑपरेटर्स ची वजाबाकी --उदाहरणार्थ : a - b -ऑपरेटर्स चा गुणाकार --उदाहरणार्थ : a * b -..
Outline: Relational Operators -Double Equal to --उदाहरणार्थ: a == b -Not Equal to --उदाहरणार्थ: a != b -Greater Than --उदाहरणार्थ: a > b -Less Than --उदाहरणार्थ: a < b -Greater tha..
Outline: लॉजिकल ऑपरेटर्स -And && -Or || -Not !