Difference between revisions of "C and Cpp"

From Script | Spoken-Tutorial
Jump to: navigation, search
(Created page with '==Introduction to C== '''Powerful features''',''' simple syntax''', and''' portability''' make '''C''' a preferred language among programmers for business and industrial applicat…')
 
 
(19 intermediate revisions by 6 users not shown)
Line 7: Line 7:
  
 
'''Dennis M. Ritchie''', a systems engineer at '''Bell Laboratories''', New Jersey developed''' C''' in the early '''1970’s'''although designed for the Unix operating system, it soon proved itself a powerful, general purpose programming language.  
 
'''Dennis M. Ritchie''', a systems engineer at '''Bell Laboratories''', New Jersey developed''' C''' in the early '''1970’s'''although designed for the Unix operating system, it soon proved itself a powerful, general purpose programming language.  
 +
 +
'''C++''' is a programming language developed by '''Bjarne Stroustrup''' starting in '''1979''' at '''Bell Labs'''. C++ is a statically typed, free-form, multi-paradigm, compiled, general-purpose, powerful programming language. C++ is an '''object oriented language'''. It supports features like  classes and objects, Polymorphism, Encapsulation, Inheritance etc. C++ is also used for hardware design.
 
   
 
   
__TOC__
 
  
==Basic Level==                                                                         
+
The Spoken Tutorial effort for '''C''' and '''C++''' is led by Ashwini Patil from IIT BOMBAY, under the guidance of various Professors from IIT BOMBAY.
1) First C Program <br>
+
  
-Header Files <br>
+
Other Contributors : Chaitanya Mokashi, Ritwik Joshi, Dhawal Goyal
<nowiki>--example: #include <stdio.h>
+
</nowiki><br>
+
-main()<br>
+
-Curly braces { }<br>
+
-printf()<br>
+
-semicolon ;<br>
+
-Compiling a C program<br>
+
--example: gcc filename.c -o output parameter <br>
+
-Executing a C program<br>
+
--example: ./output parameter <br>
+
-Errors<br>
+
  
 +
'''Learners''': High School and UG/PG CSE/CS/IT students and anyone who wishes to learn basic programming.
  
2) First C++ Program <br>
+
__TOC__
  
-Header files<br>
+
==Basic Level==                                                                         
<nowiki>--example: #include <iostream>
+
</nowiki><br>
+
-main()<br>
+
-Curly braces { }<br>
+
<nowiki>-cout<<
+
</nowiki><br>
+
-semicolon ;<br>
+
-Compiling a C++ program<br>
+
--example: g++ filename.cpp -o output parameter<br>
+
-Executing a C program<br>
+
--example: ./output parameter<br>
+
  
 +
1) '''First C Program'''
  
3) Tokens in C and C++ <br>  
+
*-Header Files
 +
**<nowiki>example: #include <stdio.h> </nowiki>
 +
*main()
 +
*Curly braces { }
 +
*printf()
 +
*semicolon ;
  
-Data types, constants, identifiers<br>
+
*Compiling a C program
-Keywords<br>
+
**example: gcc filename.c -o output parameter
--example: if, break, else<br>
+
*Executing a C program
-Constants<br>
+
**example: ./output parameter
-Data types<br>
+
*Errors  
--example: int, float, char, double<br>
+
-Format specifiers<br>
+
--example: %d, %f, %c, %lf<br>
+
-Range of data types<br>
+
-Variables<br>
+
-Identifier<br>
+
-Errors<br>
+
  
  
4) Functions in C and C++ <br>
+
2) '''First C++ Program'''
  
-What is a function<br>
+
*Header files
-Syntax for declaration of a function <br>  
+
**<nowiki>--example: #include <iostream> </nowiki>
-Function with arguments<br>
+
*main()
--example: return-type function-name(parameter);<br>  
+
*Curly braces { }
-Function without arguments<br>  
+
*<nowiki>-cout<< </nowiki>
--example: return-type function-name; <br>  
+
*semicolon ;
-Calling a function<br>  
+
-Errors<br>
+
  
 +
*Compiling a C++ program
 +
**example: g++ filename.cpp -o output parameter
 +
*Executing a C program
 +
**example: ./output parameter
  
5) Scope of Variables in C and C++ <br>
 
  
-Introduction<br>
+
3) '''Tokens in C and C++'''
-Syntax of declaring a variable<br>
+
--example: data-type var-name;<br>
+
-Syntax for initializing a variable<br>
+
--example: data-type var-name = value;<br>
+
-Scope of variables<br>
+
-Global variable<br>
+
-Local variable<br>
+
-Error<br>
+
  
 +
*Data types, constants, identifiers
 +
*Keywords
 +
**example: if, break, else
 +
*Constants
 +
*Data types
 +
**example: int, float, char, double
 +
*Format specifiers
 +
**example: %d, %f, %c, %lf
 +
*Range of data types
 +
*Variables
 +
*Identifier
 +
*Errors
  
6) Check the conditions in a program in C and C++ <br>
 
  
-What are Statements.<br>
+
4) '''Functions in C and C++'''
-Syntax for if and <br>
+
-If-else Statement<br>
+
-Errors<br>
+
  
 +
*What is a function
 +
*Syntax for declaration of a function
 +
*Function with arguments
 +
**example: return-type function-name(parameter);
 +
*Function without arguments
 +
**example: return-type function-name; 
 +
*Calling a function
 +
*Errors
  
7) Nested if and switch statement in C and C++ <br>
 
  
-Nested if statement.<br>
+
5) '''Scope of Variables in C and C++'''
-Switch statement.<br>
+
-Syntax for nested-if statement<br>
+
-Syntax for switch statement<br>
+
-break statement<br>
+
-Comparison between nested if-else and switch statement<br>
+
-Errors<br>
+
  
 +
*Introduction
 +
*Syntax of declaring a variable
 +
**example: data-type var-name;
 +
*Syntax for initializing a variable
 +
**example: data-type var-name = value;
 +
*Scope of variables
 +
*Global variable
 +
*Local variable
 +
*Error
  
8) Increment and Decrement Operators in C and C++ <br>
 
  
-Increment Operator<br>
+
6) '''If And Else If statement in C and C++'''
--example: ++<br>
+
-Postfix increment<br>
+
--example: a++<br>
+
-Prefix increment<br>
+
--example: ++a<br>
+
-Decrement Operator<br>
+
--example: --<br>
+
-Postfix decrement<br>
+
--example: a--<br>
+
-Prefix decrement<br>
+
--example: --a<br>
+
-Typecasting<br>
+
-Errors<br>
+
  
 +
*What are Statements.
 +
*Syntax for if and
 +
*If-else Statement
 +
*Errors
  
9) Arithmetic Operators in C and C++ <br>
 
  
-Arithmetic Operators<br>
+
7) '''Nested if and switch statement in C and C++'''
-Addition Operator<br>
+
--example: a + b<br>
+
-Subtraction Operator<br>
+
--example: a - b<br>
+
-Multiplication Operator<br>
+
--example: a * b <br>
+
-Division Operator<br>
+
--example: a \ b<br>
+
-Modulus Operator <br>
+
--example: a % b<br>
+
-Errors<br>
+
  
 +
*Nested if statement.
 +
*Switch statement.
 +
*Syntax for nested-if statement
 +
*Syntax for switch statement
 +
*break statement
 +
*Comparison between nested if-else and switch statement
 +
*Errors
  
10) Relational Operators in C and C++ <br>
 
-Double Equal to <br>
 
--example: a == b<br>
 
-Not Equal to <br>
 
--example: a != b <br>
 
-Greater Than <br>
 
--example: a > b<br>
 
-Less Than <br>
 
<nowiki>--example: a < b
 
</nowiki><br>
 
-Greater than Equal To <br>
 
--example: a >= b<br>
 
-Less Than Equal To <br>
 
<nowiki>--example: a <= b
 
</nowiki><br>
 
-Errors<br>
 
  
 +
8) '''Increment and Decrement Operators in C and C++'''
  
11) Logical Operators in C and C++ <br>
+
*Increment Operator
 +
**example: ++  
 +
*Postfix increment
 +
**example: a++
 +
*Prefix increment
 +
**example: ++a
 +
*Decrement Operator
 +
**example: --
 +
*Postfix decrement
 +
**example: a--
 +
*Prefix decrement
 +
**example: --a
 +
*Typecasting
 +
*Errors
  
-And && <br>
 
-Or ||<br>
 
-Not !<br>
 
-Errors<br>
 
  
 +
9) '''Arithmetic Operators in C and C++'''
  
12) Loops in C and C++ <br>
+
*Arithmetic Operators
 +
*Addition Operator
 +
**example: a + b
 +
*Subtraction Operator
 +
**example: a - b
 +
*Multiplication Operator
 +
**example: a * b
 +
*Division Operator
 +
**example: a \ b
 +
*Modulus Operator
 +
**example: a % b
 +
*Errors
  
-Loops<br>
 
-Syntax for while and do-while loop<br>
 
-Comparison of while and do-while loop<br>
 
-Syntax for<br>
 
-for loop<br>
 
-Errors<br>
 
  
 +
10) '''Relational Operators in C and C++'''
  
13) Arrays in C and C++ <br>
+
*Double Equal to
 +
**example: a == b
 +
*Not Equal to
 +
**example: a != b
 +
*Greater Than
 +
**example: a > b
 +
*Less Than
 +
**<nowiki>example: a < b </nowiki>
 +
*Greater than Equal To
 +
**<nowiki>example: a >= b </nowiki>
 +
*Less Than Equal To
 +
**<nowiki>example: a <= b </nowiki>
 +
*Errors
  
-What are arrays<br>
 
-1-D Arrays <br>
 
-Syntax for Declaration of arrays<br>
 
<nowiki>--example: data type array_name [size];
 
</nowiki><br>
 
-Syntax for Initialization of arrays<br>
 
<nowiki>--example: data type array_name [size]=value;
 
</nowiki><br>
 
-Accepting values from the user<br>
 
-Errors<br>
 
  
 
+
11) '''Logical Operators in C and C++  
14) Working with 2-D Arrays in C and C++ <br>
+
'''
 
+
*And &&
-What are 2-D Arrays.<br>
+
*Or ||
-Range of arrays<br>
+
*Not !
-Syntax for Declaration of 2-D arrays<br>
+
*Errors  
<nowiki>--example: data type array_name[row][column];
+
</nowiki><br>
+
-Syntax for initialization of 2-D arrays<br>
+
<nowiki>--example: data type array_name[row][column]=
+
</nowiki><br>
+
{ <br>
+
{row-val},{col-val} <br>
+
};<br>
+
-Errors<br>
+
  
  
 
==Intermediate level==   
 
==Intermediate level==   
  
15) Strings in C and C++ <br>
+
12) '''Loops in C and C++'''
  
-What is a string<br>
+
*Loops
-Syntax for declaring a string<br>
+
*Syntax for while and do-while loop
-Syntax for initializing a string<br>
+
*Comparison of while and do-while loop
-To read a string from keyboard<br>
+
*Syntax for  
-Errors<br>
+
*for loop
 +
*Errors
  
  
16) String Library Functions in C and C++ <br>
+
13) '''Arrays in C and C++'''
-What are string library functions.<br>
+
-Types of string library functions<br>
+
-Strcpy<br>
+
-Strlen<br>
+
-Strcmp<br>
+
-Strcat<br>
+
-Errors<br>
+
  
 +
*What are arrays
 +
*1-D Arrays
 +
*Syntax for Declaration of arrays
 +
**<nowiki>example: data type array_name [size]; </nowiki>
 +
*Syntax for Initialization of arrays
 +
**<nowiki>example: data type array_name [size]=value; </nowiki>
 +
*Accepting values from the user
 +
*Errors
  
17) Working with Structures in C and C++ <br>
 
  
-Introduction<br>
+
14) '''Working with 2-D Arrays in C and C++'''
-Syntax of structures<br>
+
*What are 2-D Arrays.
-Declaration and initialization<br>
+
*Range of arrays
-Declaration of structure variable<br>
+
*Syntax for Declaration of 2-D arrays
-Accessing structure variables<br>
+
**example: data type array_name[row][column];
 +
*Syntax for initialization of 2-D arrays
 +
**example: data type array_name[row][column]=
 +
{
 +
 
 +
{row-val},{col-val}
 +
 
 +
};
 +
*Errors
  
  
18) Understanding Pointers in C and C++ <br>
+
15) '''Strings in C and C++'''
  
-Introduction<br>
+
*What is a string
-Syntax of Pointer<br>
+
*Syntax for declaring a string
--example: int *iptr;<br>
+
*Syntax for initializing a string
-Declaration<br>
+
*To read a string from keyboard
--example: int a;<br> 
+
*Errors  
(integer a)<br>
+
int *aptr; <br>
+
(pointer to an integer *aptr)<br>
+
aptr = &a; <br>
+
(aptr set to address of a)<br>
+
Address Pointer<br>
+
-Errors<br>
+
  
  
19) Files in C <br>
+
16) '''String Library Functions in C and C++'''
 
+
-File handling functions<br>
+
-Opening a File closing a file<br>
+
--example: fopen, fclose<br>
+
-Reading data from a File<br>
+
  
 +
*What are string library functions.
 +
*Types of string library functions
 +
**Strcpy
 +
**Strlen
 +
**Strcmp
 +
**Strcat
 +
*Errors
  
 
==Advanced level==   
 
==Advanced level==   
  
20) Classes and Objects in C++ <br>
+
17) '''Working with Structures in C and C++'''
 
+
-Defining Classes<br>
+
-create a class<br>
+
-Defining Objects<br>
+
-create an object of the class<br>
+
-Encapsulation<br>
+
-Member Functions<br>
+
-To create a function<br>
+
 
+
 
+
21) Constructor and Destructor <br>
+
 
+
-Constructor and Destructor<br>
+
-To create a constructor<br>
+
-Parameterized constructors<br>
+
-Copy Constructors<br>
+
-Destructor<br>
+
 
+
22) Operator Overloading  <br>
+
  
-Operator Overloading<br>
+
*Introduction
-Static Keyword<br>
+
*Syntax of structures
-Static variable<br>
+
*Declaration and initialization
-Static member function<br>
+
*Declaration of structure variable
-Static Classes<br>
+
*Accessing structure variables
  
  
23) Inheritance <br>
+
18) '''Understanding Pointers in C and C++'''
  
-Inheritance<br>
+
*Introduction
-Concept of subclass and superclass<br>
+
*Syntax of Pointer
-Types of inheritance<br>
+
**example: int *iptr;
 +
*Declaration
 +
**example:
 +
int a;
 +
(integer a)
 +
int *aptr;
 +
(pointer to an integer *aptr)
 +
aptr = &a;
 +
(aptr set to address of a)
 +
Address Pointer
 +
*Errors
  
  
24) Polymorphism  <br>
+
19) '''Function call in C and C++'''
  
-Polymorphism<br> 
+
*types of function calls
-Virtual Members<br>
+
*function pass by value
-abstract class<br>
+
*function pass by reference
-abstract methods<br> in C++
+
  
  
25) Exception Handling <br>
+
20) '''File Handling in C'''
  
-Exceptions<br>
+
*File handling functions
-try<br>
+
*Opening a File closing a file
-throw<br>
+
**example: fopen, fclose
-catch<br>
+
*Reading data from a File

Latest revision as of 15:34, 6 February 2020

Introduction to C

Powerful features, simple syntax, and portability make C a preferred language among programmers for business and industrial applications.Portability means that C programs written for a computer with a particular kind of processor, say Intel, can be executed on computers with different processors such as Motorola, Sun Sparc, or IBM with little or no modification.C language is widely used in the development of operating systems.

An Operating System(OS) is a software(collection of programs) that controls the various functions of a computer. Also it makes other programs on your computer work.

For example, you cannot work with a word processor program, such as Microsoft Word, if there is no operating system installed on your computer.Windows, Unix, Linux, Solaris, and MacOS are some of the popular operating systems.

Dennis M. Ritchie, a systems engineer at Bell Laboratories, New Jersey developed C in the early 1970’salthough designed for the Unix operating system, it soon proved itself a powerful, general purpose programming language.

C++ is a programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs. C++ is a statically typed, free-form, multi-paradigm, compiled, general-purpose, powerful programming language. C++ is an object oriented language. It supports features like classes and objects, Polymorphism, Encapsulation, Inheritance etc. C++ is also used for hardware design.


The Spoken Tutorial effort for C and C++ is led by Ashwini Patil from IIT BOMBAY, under the guidance of various Professors from IIT BOMBAY.

Other Contributors : Chaitanya Mokashi, Ritwik Joshi, Dhawal Goyal

Learners: High School and UG/PG CSE/CS/IT students and anyone who wishes to learn basic programming.

Basic Level

1) First C Program

  • -Header Files
    • example: #include <stdio.h>
  • main()
  • Curly braces { }
  • printf()
  • semicolon ;
  • Compiling a C program
    • example: gcc filename.c -o output parameter
  • Executing a C program
    • example: ./output parameter
  • Errors


2) First C++ Program

  • Header files
    • --example: #include <iostream>
  • main()
  • Curly braces { }
  • -cout<<
  • semicolon ;
  • Compiling a C++ program
    • example: g++ filename.cpp -o output parameter
  • Executing a C program
    • example: ./output parameter


3) Tokens in C and C++

  • Data types, constants, identifiers
  • Keywords
    • example: if, break, else
  • Constants
  • Data types
    • example: int, float, char, double
  • Format specifiers
    • example: %d, %f, %c, %lf
  • Range of data types
  • Variables
  • Identifier
  • Errors


4) Functions in C and C++

  • What is a function
  • Syntax for declaration of a function
  • Function with arguments
    • example: return-type function-name(parameter);
  • Function without arguments
    • example: return-type function-name;
  • Calling a function
  • Errors


5) Scope of Variables in C and C++

  • Introduction
  • Syntax of declaring a variable
    • example: data-type var-name;
  • Syntax for initializing a variable
    • example: data-type var-name = value;
  • Scope of variables
  • Global variable
  • Local variable
  • Error


6) If And Else If statement in C and C++

  • What are Statements.
  • Syntax for if and
  • If-else Statement
  • Errors


7) Nested if and switch statement in C and C++

  • Nested if statement.
  • Switch statement.
  • Syntax for nested-if statement
  • Syntax for switch statement
  • break statement
  • Comparison between nested if-else and switch statement
  • Errors


8) Increment and Decrement Operators in C and C++

  • Increment Operator
    • example: ++
  • Postfix increment
    • example: a++
  • Prefix increment
    • example: ++a
  • Decrement Operator
    • example: --
  • Postfix decrement
    • example: a--
  • Prefix decrement
    • example: --a
  • Typecasting
  • Errors


9) Arithmetic Operators in C and C++

  • Arithmetic Operators
  • Addition Operator
    • example: a + b
  • Subtraction Operator
    • example: a - b
  • Multiplication Operator
    • example: a * b
  • Division Operator
    • example: a \ b
  • Modulus Operator
    • example: a % b
  • Errors


10) Relational Operators in C and C++

  • Double Equal to
    • example: a == b
  • Not Equal to
    • example: a != b
  • Greater Than
    • example: a > b
  • Less Than
    • example: a < b
  • Greater than Equal To
    • example: a >= b
  • Less Than Equal To
    • example: a <= b
  • Errors


11) Logical Operators in C and C++

  • And &&
  • Or ||
  • Not !
  • Errors


Intermediate level

12) Loops in C and C++

  • Loops
  • Syntax for while and do-while loop
  • Comparison of while and do-while loop
  • Syntax for
  • for loop
  • Errors


13) Arrays in C and C++

  • What are arrays
  • 1-D Arrays
  • Syntax for Declaration of arrays
    • example: data type array_name [size];
  • Syntax for Initialization of arrays
    • example: data type array_name [size]=value;
  • Accepting values from the user
  • Errors


14) Working with 2-D Arrays in C and C++

  • What are 2-D Arrays.
  • Range of arrays
  • Syntax for Declaration of 2-D arrays
    • example: data type array_name[row][column];
  • Syntax for initialization of 2-D arrays
    • example: data type array_name[row][column]=

{

{row-val},{col-val}

};

  • Errors


15) Strings in C and C++

  • What is a string
  • Syntax for declaring a string
  • Syntax for initializing a string
  • To read a string from keyboard
  • Errors


16) String Library Functions in C and C++

  • What are string library functions.
  • Types of string library functions
    • Strcpy
    • Strlen
    • Strcmp
    • Strcat
  • Errors

Advanced level

17) Working with Structures in C and C++

  • Introduction
  • Syntax of structures
  • Declaration and initialization
  • Declaration of structure variable
  • Accessing structure variables


18) Understanding Pointers in C and C++

  • Introduction
  • Syntax of Pointer
    • example: int *iptr;
  • Declaration
    • example:

int a; (integer a) int *aptr; (pointer to an integer *aptr) aptr = &a; (aptr set to address of a) Address Pointer

  • Errors


19) Function call in C and C++

  • types of function calls
  • function pass by value
  • function pass by reference


20) File Handling in C

  • File handling functions
  • Opening a File closing a file
    • example: fopen, fclose
  • Reading data from a File