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 - Malayalam
Outline: -Loops - while, do-while loop എന്നിവയുടെ ഘടന. -whileഉം do-while loopഉം തമ്മിലുള്ള താരതമ്യം . -for loopന്റെ ഘടന -Errors
Outline: -1-D Arrays - arrays ഡിക്ലയർ ചെയ്യുന്നതിനുള്ള ഘടന --ഉദാഹരണം : data type arrayയുടെ _ പേര് [size]; - arrays initialize ചെയ്യുന്നതിനുള്ള ഘടന --ഉദാഹരണം:..
Outline: 2-D Arrays -എന്താണ് 2-D Arrays. -array ന്റെ range. - 2-D arrays ഡിക്ലയർ ചെയ്യുന്നതിനുള്ള ഘടന --ഉദാഹരണം: data type array_name[row][column]; -2..
Outline: -Strings -എന്താണ് string? -ഒരു string ഡിക്ലയർ ചെയ്യുന്നതിന്റെ ഘടന - ഒരു string intialize ചെയ്യുന്നതിന്റെ ഘടന -കീ ബോർഡിൽ നിന്നൊരു string റീഡ് ചെയ്യുന്നത് .
Outline: string Libraryഫങ്ഷനുകള് എന്താണ് string Libraryഫങ്ഷനുകള് പല തരത്തിലുള്ള string library ഫങ്ഷനുകള് -strcpy -strlen -strcmp -strcat
Outline: structures - ആമുഖം - structuresന്റെ ഘടന - declaration നും initializationനും - structure വേരിയബിളിന്റെ declaration - structure വേരിയബിളുകൾ accessചെയ്യുന്നത്
Outline: -പോയിന്റർ -ആമുഖം -പോയിന്ററിന്റെ ഘടന - ഉദാഹരണം : int *iptr; -ഡിക്ലറേഷൻ -ഉദാഹരണം : int a; -(integer a) -int *aptr; -(pointer to an integer *aptr) -aptr = &a; -(aptr set ..
Outline: ഫങ്ഷൻ call പല തരത്തിലുള്ള ഫങ്ഷൻ call ഫങ്ഷൻ pass by value ഫങ്ഷൻ pass by reference
Outline: -C ലെ files. -ഫയൽ കൈകാര്യം ചെയ്യുന്ന functions -ഫയൽ തുറക്കുന്നതും അടയ്ക്കുന്നതും -ഉദാഹരണം:fopen, fclose -ഒരു ഫയലിൽ നിന്ന് ഡേറ്റ റീഡ് ചെയ്യുന്നത്
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:..
Outline: Outline: First C++ Program -Header files --example: #include <iostream> -main() -Curly braces -cout<< -semicolon ; -Compiling a C++ program --example:..
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..
Outline: Outline: Functions -What is a function -Syntax for declaration of a function -Function with arguments --example: return-type function-name(parameter); -Function ..
Outline: Outline: Scope of Variables -Introduction -Syntax of declaring a variable --example: data-type var-name; -Syntax for initializing a variable --example: data-type ..
Outline: Outline: Check the conditions in a program -What are Statements. -Syntax for if and -If-else Statement -Errors
Outline: Outline: Nested if and switch statement -Nested if statement. -Switch statement. -Syntax for nested-if statement -Syntax for switch statement -break statement ..
Outline: Outline: Increment and Decrement Operators -Increment Operator --example: ++ -Postfix increment --example: a++ -Prefix increment --example: ++a -Decrement ..
Outline: Outline: Arithmetic Operators -Arithmetic Operators -Addition Operator --example: a + b -Subtraction Operator --example: a - b -Multiplication Operator --ex..
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 ..
Outline: Outline: Logical Operators -And && -Or || -Not !