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 9587 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : C and Cpp - Malayalam

Outline: ഫങ്ഷൻ call പല തരത്തിലുള്ള ഫങ്ഷൻ call ഫങ്ഷൻ pass by value ഫങ്ഷൻ pass by reference

Advanced

Foss : C and Cpp - Malayalam

Outline: -C ലെ files. -ഫയൽ കൈകാര്യം ചെയ്യുന്ന functions -ഫയൽ തുറക്കുന്നതും അടയ്ക്കുന്നതും -ഉദാഹരണം:fopen, fclose -ഒരു ഫയലിൽ നിന്ന് ഡേറ്റ റീഡ് ചെയ്യുന്നത്

Advanced

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

Outline: Outline: Scope of Variables -Introduction -Syntax of declaring a variable --example: data-type var-name; -Syntax for initializing a variable --example: data-type ..

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

Outline: Outline: Arithmetic Operators -Arithmetic Operators -Addition Operator --example: a + b -Subtraction Operator --example: a - b -Multiplication Operator --ex..

Basic

Foss : C and Cpp - Manipuri

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

Basic

Foss : C and Cpp - Manipuri

Outline: Outline: Logical Operators -And && -Or || -Not !

Basic

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

Intermediate

Foss : C and Cpp - Manipuri

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

Intermediate

Foss : C and Cpp - Manipuri

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

Intermediate

Foss : C and Cpp - Manipuri

Outline: Outline: Strings -What is a string -Syntax for declaring a string -Syntax for initializing a string -To read a string from keyboard

Intermediate

Foss : C and Cpp - Manipuri

Outline: Outline: String Library Functions What are string library functions. Types of string library functions -Strcpy -Strlen -Strcmp -Strcat

Intermediate

Foss : C and Cpp - Manipuri

Outline: Outline: Working with Structures -Introduction -Syntax of structures -Declaration and initialization -Declaration of structure variable -Accessing structure varia..

Advanced

Foss : C and Cpp - Manipuri

Outline: Outline: Understanding Pointers -Introduction -Syntax of Pointer --example: int *iptr; -Declaration --example: int a; (integer a) int *aptr; (pointer to ..

Advanced