Introduction to Programming Fundamentals

Course objectives for this Blog:  

-     Covers important, fundamental topics in structured programming
-     It emphasizes upon problem analysis
-      Algorithm designing
-      Program development and testing

Course Outline: 


  1.           Introduction To Programming
  2.           Flow Charts 
  3.           Pseudo-code
  4.           Basic Structure of C++ Programming 
  5.           Manipulators-  Expressions
  6.           Functions
  7.           Decision Making
  8.           Switch Statements
  9.           Loops
  10.           Text Input/ Output
  11.           Arrays
  12.           Strings
  13.           Pointers 
  14.           Structure


So, Lets start with 



INTRODUCTION TO PROGRAMMING 

        Computer is a machine which understand only the machine language only and And to run the machine we need some programming instructions. So , In this lecture we will understand the Programming language (C++).
        First of all the question arises :

What is Programming Language?
        "Programming language is a formal language that provide the set of instructions to operate the machine."

        Before starting the lectures you should follow the instructions bellow for gaining good concepts of programming.

1.     Read the Problem carefully again and again.
2.     Understand the given problem. 
3.     Write the Pseudo code/ Flow chart of the problem.
4.    Write a code in the desired language.
5.    Compile the Code.
6.    If it fail compiling check out the errors in the error-list and solve the errors 
7.    Compile and run the program successfully.





So Lets Start Programming with C++Click Here For the First lecture


Comments

Popular posts from this blog

Introduction to Flow Charts