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

Foss : C and Cpp - English

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

Advanced

Foss : C and Cpp - English

Outline: Function call -types of function calls -function pass by value -function pass by reference

Advanced

Foss : C and Cpp - English

Outline: Files in C -File handling functions -Opening a File closing a file --example: fopen, fclose -Reading data from a File

Advanced

Foss : C and Cpp - English-USA

Outline: 1) Header Files example: #include <stdio.h> main() Curly braces printf() semicolon ; 2) Compiling a C program example: gcc filename.c -o output parameter ..

Basic

Foss : C and Cpp - English-USA

Outline: -Header files --example: #include <iostream> -main() -Curly braces -cout<< -semicolon ; -Compiling a C++ program --example: g++ filename.cpp -o output parame..

Basic

Foss : C and Cpp - English-USA

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

Basic

Foss : C and Cpp - English-USA

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

Basic

Foss : C and Cpp - English-USA

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

Basic

Foss : C and Cpp - English-USA

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

Basic

Foss : C and Cpp - English-USA

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

Basic

Foss : C and Cpp - Gujarati

Outline: 1) પ્રથમ C પ્રોગ્રામ - હેડર ફાઈલ --ઉદાહરણ: #include <stdio.h> -main() -Curly braces -printf() -semicolon ; - C પ્રોગ્રામ કમ્પાઈલ કરવું --ઉદાહરણ: gcc f..

Basic

Foss : C and Cpp - Gujarati

Outline: પ્રથમ C++ પ્રોગ્રામ - હેડર ફાઈલ્સ --ઉદાહરણ: #include <iostream> -main() -Curly braces -cout<< -semicolon ; - C++ પ્રોગ્રામ કમ્પાઈલ કરવું. --ઉદાહરણ: ..

Basic

Foss : C and Cpp - Gujarati

Outline: 3) C અને C++ માં ટોકનસ -ડેટા ટાઈપ, કોન્સટંટસ , આઇડેન્ટીફાયર -કીવર્ડસ --ઉદાહરણ: if, break, else -કોન્સટંટસ -ડેટા ટાઈપ --ઉદાહરણ: int, float, char, double ..

Basic

Foss : C and Cpp - Gujarati

Outline: ફંક્શનો ફંક્શન' શું છે ફંક્શન ના જાહેરાત માટે સિન્ટેક્ષ આર્ગ્યુંમેંટો સાથેનાં ફંક્શન ઉદાહરણ: રીટર્ન પ્રકાર ફંક્શન નામ(પેરામીટર) આર્ગ્યુંમેંટ વિનાનાં ફંક્શનો ..

Basic

Foss : C and Cpp - Gujarati

Outline: સ્કોપ ઓફ વેરીએબલ -પરિચય - વેરીએબલ ડીકલેર કરવા માટે સિન્ટેક્સ --ઉદાહરણ: data-type var-name; - વેરીએબલ ઇનિશિલાઇઝ કરવા માટે સિન્ટેક્સ --ઉદાહરણ: data-type var-name =..

Basic

Foss : C and Cpp - Gujarati

Outline: પ્રોગ્રામમાં કંડીશનો તપાસવા સ્ટેટમેંટો શું છે. if and માટે સિન્ટેક્ષ If-else સ્ટેટમેંટ એરર

Basic

Foss : C and Cpp - Gujarati

Outline: નેસ્ટેડ ઇફ અને સ્વિચ સ્ટેટમેન્ટ નેસ્ટેડ ઇફ સ્ટેટમેન્ટ. સ્વિચ સ્ટેટમેન્ટ. નેસ્ટેડ ઇફ સ્ટેટમેન્ટ માટે સિન્ટેક્ષ સ્વિચ સ્ટેટમેન્ટ માટે સિન્ટે બ્રેક સ્ટેટમેન્ટ ..

Basic

Foss : C and Cpp - Gujarati

Outline: ઇન્ક્રીમેંટ અક્ને ડીક્રીમેંટ ઓપરેટરસ -ઇન્ક્રીમેંટ ઓપરેટર --ઉદાહરણ: ++ -પોસ્ટફિક્ષ ઇન્ક્રીમેંટ --ઉદાહરણ: a++ -પ્રિફિક્ષ ઇન્ક્રીમેંટ --ઉદાહરણ: ++a -ડીક..

Basic

Foss : C and Cpp - Gujarati

Outline: એરિથમેટિક ઓપરેટરસ -એરિથમેટિક ઓપરેટરસ -એડીશનલ ઓપરેટર --ઉદાહરણ: a + b -સબસ્ટ્રેકશન ઓપરેટર --ઉદાહરણ: a - b -મલ્ટીપ્લીકેશન ઓપરેટર --ઉદાહરણ: a * b -ડ..

Basic

Foss : C and Cpp - Gujarati

Outline: રીલેશનલ ઓપરેટરસ -Double Equal to --ઉદાહરણ: a == b -Not Equal to --ઉદાહરણ: a != b -Greater Than --eઉદાહરણ: a > b -Less Than --ઉદાહરણ: a < b -Great..

Basic