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 - Khasi
Outline: -types jong ki function calls -function pass by value -function pass by reference
Outline: -File handling functions -Ban plie ia ka phail bad khang ia ka phail --nuksa: fopen, fclose -Ban pule ia ki data na ka phail
Foss : C and Cpp - Malayalam
Outline: -ആദ്യത്തെ C പ്രോഗ്രാം -Header Files --ഉദാഹരണം: #include -main() -Curly braces -printf() -semicolon ; -ഒരു C പ്രോഗ്രാമിന്റെ Compiling --ഉദാഹരണം: gcc filename.c -o output..
Outline: -ആദ്യത്തെ C++ പ്രോഗ്രാം -Header ഫയലുകൾ --ഉദാഹരണം : #include -main() -Curly ബ്രാക്കറ്റുകൾ -cout<< -semicolon ; - ഒരു C++ പ്രോഗ്രാമിന്റെ Compiling --ഉദാഹരണം: g++ filenam..
Outline: -C,C-Plus-Plusപ്രോഗ്രാമിലെ ടോക്കണ്സ് -Data types, constants, identifiers -Keywords --ഉദാഹരണം : if, break, else -Constants -Data types -ഉദാഹരണം: in..
Outline: -എന്താണ് function -function declaration ന്റെ syntax -arguments ഓടെയുള്ള function --ഉദാഹരണം: return-type function-name(parameter); -arguments ഇല്ലാതെയുള്ള f..
Outline: -ആമുഖം -വേരിയബിൾ declaration ന്റെ syntax --ഉദാഹരണം: data-type var-name; -വേരിയബിൾ initialization ന്റെ syntax --ഉദാഹരണം: data-type var-name = value; -വേരിയബിളിന്റെ scope ..
Outline: -പ്രോഗ്രാമിലെ conditions പരിശോധിക്കുന്നത്. -എന്താണ് സ്റ്റേറ്റ് മെന്റ്. -if, If-else സ്റ്റേറ്റ് മെന്റുകളുടെ syntax. -Errors.
Outline: -nested if സ്റ്റേറ്റ്മെന്റും switchസ്റ്റേറ്റ്മെന്റും -Nested if സ്റ്റേറ്റ്മെന്റ് . -Switch സ്റ്റേറ്റ്മെന്റ് . -Nested-if സ്റ്റേറ്റ് മെന്റിന്റെ ഘടന . -Switch സ്റ്റേറ്റ് മെന്റിന..
Outline: Increment , Decrement Operators -Increment Operator --ഉദാഹരണം : ++ -Postfix increment --ഉദാഹരണം: a++ -Prefix increment --ഉദാഹരണം: ++a -Decr..
Outline: -Arithmetic Operators -Addition Operator --ഉദാഹരണം: a + b -Subtraction Operator --ഉദാഹരണം: a - b -Multiplication Operator --ഉദാഹരണം: a * b -Divis..
Outline: -Double Equal to --ഉദാഹരണം: a == b -Not Equal to --ഉദാഹരണം: a != b -Greater Than --ഉദാഹരണം: a > b -Less Than --ഉദാഹരണം: a < b -Greater tha..
Outline: Logical Operators -And && -Or || -Not !
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 ..