Difference between revisions of "C and Cpp"
Nancyvarkey (Talk | contribs) |
|||
Line 144: | Line 144: | ||
-Or ||<br> | -Or ||<br> | ||
-Not !<br> | -Not !<br> | ||
− | -Errors<br> | + | -Errors<br> http://www.spoken-tutorial.iitb.ac.in/search_videos |
Line 277: | Line 277: | ||
-Types of inheritance<br> | -Types of inheritance<br> | ||
+ | 24) Multiple and Hierarchical Inheritance <br> | ||
− | + | -Multiple Inheritance <br> | |
+ | -Hierarchical Inheritance <br> | ||
+ | --Examples | ||
+ | |||
+ | |||
+ | 25) Polymorphism <br> | ||
-Polymorphism<br> | -Polymorphism<br> | ||
-Virtual Members<br> | -Virtual Members<br> | ||
+ | -Virtaul Functions | ||
+ | |||
+ | |||
+ | 26) Virtual class <br> | ||
-abstract class<br> | -abstract class<br> | ||
-abstract methods<br> in C++ | -abstract methods<br> in C++ |
Revision as of 12:04, 14 January 2013
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.
Basic Level
- 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
- Header Files
- 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
- Header files
- 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
- 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
- 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) Check the conditions in a program 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
http://www.spoken-tutorial.iitb.ac.in/search_videos
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
Intermediate level
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
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) Files in C
-File handling functions
-Opening a File closing a file
--example: fopen, fclose
-Reading data from a File
Advanced level
20) Classes and Objects in C++
-Defining Classes
-create a class
-Defining Objects
-create an object of the class
-Encapsulation
-Member Functions
-To create a function
21) Constructor and Destructor
-Constructor and Destructor
-To create a constructor
-Parameterized constructors
-Copy Constructors
-Destructor
22) Operator Overloading
-Operator Overloading
-Static Keyword
-Static variable
-Static member function
-Static Classes
23) Inheritance
-Inheritance
-Concept of subclass and superclass
-Types of inheritance
24) Multiple and Hierarchical Inheritance
-Multiple Inheritance
-Hierarchical Inheritance
--Examples
25) Polymorphism
-Polymorphism
-Virtual Members
-Virtaul Functions
26) Virtual class
-abstract class
-abstract methods
in C++
25) Exception Handling
-Exceptions
-try
-throw
-catch
Contributors and Content Editors
Ashwini, Kaushik Datta, Minal, Nancyvarkey, PoojaMoolya, Pratik kamble, Snehalathak