ANIMATE 2025 is here! 2D/3D animation hackathon using Synfig Studio and Blender. For more details, Click here!

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

Foss : C and Cpp - Tamil

Outline: முதல் C++ Program -Header files --உதாரணம்: #include -main() -Curly braces -cout<< -semicolon ; -ஒரு C++ program ஐ கம்பைல் செய்வது --உதாரணம்: g++ filename.cpp -o outp..

Basic

Foss : C and Cpp - Tamil

Outline: C மற்றும் C++ ல் tokens -Data types, constants, identifiers -Keywords --உதாரணம்: if, break, else -Constants -Data types --உதாரணம்: int, float, char, double -Format specifier..

Basic

Foss : C and Cpp - Tamil

Outline: Functions -ஒரு function என்றால் என்ன -ஒரு function ஐ declare செய்ய syntax -Argumentகளுடன் function --உதாரணம்: return-type function-name(parameter); -Argumentகள் இல்லாமல் func..

Basic

Foss : C and Cpp - Tamil

Outline: Variableகளின் scope -அறிமுகம் -ஒரு variable ஐ declare செய்ய syntax --உதாரணம்: data-type var-name; -ஒரு variable ஐ initialize செய்ய syntax --உதாரணம்: data-type var-name = value..

Basic

Foss : C and Cpp - Tamil

Outline: Program ல் condition களை சோதித்தல் -Statementகள் என்றால் என்ன. -அதற்கான Syntax -If-else Statement -பிழைகள்

Basic

Foss : C and Cpp - Tamil

Outline: Nested if மற்றும் switch statement -Nested if statement. -Switch statement. -Nested-if statement க்கான Syntax -Switch statement க்கான Syntax -break statement -Nested if-els..

Basic

Foss : C and Cpp - Tamil

Outline: Increment மற்றும் Decrement Operators -Increment Operator --உதாரணம்: ++ -Postfix increment --உதாரணம்: a++ -Prefix increment --உதாரணம்: ++a -Decrement Operator --உதாரணம்: --..

Basic

Foss : C and Cpp - Tamil

Outline: Arithmetic Operators -கூட்டல் Operator --உதாரணம்: a + b -கழித்தல் Operator --உதாரணம்: a - b -பெருக்கல் Operator --உதாரணம்: a * b -வகுத்தல் Operator --உதாரணம்: a / b -Modul..

Basic

Foss : C and Cpp - Tamil

Outline: Relational Operators -Double Equal to --உதாரணம்: a == b -Not Equal to --உதாரணம்: a != b -Greater Than --உதாரணம்: a > b -Less Than --உதாரணம்: a < b -Greater than Equal To ..

Basic

Foss : C and Cpp - Tamil

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

Basic

Foss : C and Cpp - Tamil

Outline: Loops -Loops -While மற்றும் do-while loop க்கான syntax -While மற்றும் do-while loop க்கு இடையே ஒப்பீடு -for loop க்கான syntax -பிழைகள்

Intermediate

Foss : C and Cpp - Tamil

Outline: Arrays -Arrays என்பவை யாவை -1-D Arrays -Arrays ஐ declare செய்வதற்கான syntax --உதாரணம்: data type array_name [size]; -Arrays ஐ initialize செய்வதற்கான syntax --உதாரணம்: data ty..

Intermediate

Foss : C and Cpp - Tamil

Outline: Working with 2-D Arrays -2-D Arrays என்பவை யாவை. -Arrays ன் வீச்சு -2-D arrays ஐ declare செய்வதற்கான syntax --உதாரணம்: data type array_name[row][column]; -2-D arrays initializ..

Intermediate

Foss : C and Cpp - Tamil

Outline: Strings -ஒரு string என்பது என்ன -ஒரு string ஐ declare செய்வதற்கான syntax -ஒரு string ஐ initialize செய்வதற்கான syntax -விசைப்பலகையில் இருந்து ஒரு string ஐ read செய்வது

Intermediate

Foss : C and Cpp - Tamil

Outline: String Library Functions -String library functionகள் யாவை -String library functionகளின் வகைகள் -Strcpy -Strlen -Strcmp -Strcat

Intermediate

Foss : C and Cpp - Tamil

Outline: Structures உடன் வேலைசெய்வது -அறிமுகம் -Structures ன் syntax -Declare மற்றும் initialize செய்வது -Structure variable ஐ declare செய்வது -Structure variableகளை அணுகுவது

Advanced

Foss : C and Cpp - Tamil

Outline: Pointers ஐ புரிந்துகொள்ளுதல் -அறிமுகம் - Pointer க்கான syntax --எ.கா: int *iptr; -Declare செய்வது --எ.கா: int a; (integer a) int *aptr; (ஒரு integer *aptr க்கு pointer) ap..

Advanced

Foss : C and Cpp - Tamil

Outline: Function call -function call ன் வகைகள் -function க்கு மதிப்பு மூலம் அனுப்புவது -function க்கு reference மூலம் அனுப்புவது

Advanced

Foss : C and Cpp - Tamil

Outline: C ல் Files -File handling ன் functionகள் -ஒரு File ஐ திறப்பது, ஒரு file ஐ மூடுவது --எ.கா: fopen, fclose -ஒரு File ல் இருந்து data ஐ read செய்வது

Advanced

Foss : C and Cpp - Telugu

Outline: 1) మొదటి సి ప్రోగ్రాం -హెడ్డర్ ఫైల్ -- ఉదాహరణ: #include <stdio.h> -main() - కర్లి బ్రాకెట్స్. -printf() -సెమీకోలన్; -సి ప్రోగ్రాం కంపైల్ చేయుట --ఉద..

Basic