Topics
Introduction
Steps to Develop a Program
History of C
Where C Stands
Getting Started with C
Structure of a C program
Execution of C Program
C - Tokens
 

Steps to Develop a Program

                                                                 << Back

    The following steps are used in sequence for developing an efficient program:
  • Specifying the problem statement
  • Designing an algorithm
  • Coding
  • Debugging
  • Testing and Validating
  • Documentation and Maintenance.
 Specifying the Problem:
            The Problem which has to be implemented into a program must be thoroughly understood before the program is written. Problem must be analyzed to determine the input and output requirements of the program. A problem is created with these specifications.
 
Designing an Algorithm:
            With the problem statement obtained in the previous step, various methods available for obtaining the required solution are analyzed and the best suitable method is designed into algorithm.
            To improve clarity and understandability of the program flow charts are drawn using the algorithms.
 
Coding:
            The actual program is written in the required programming language with the help of information depicted in flow charts and algorithms.
 
Debugging:
            There is a possibility of occurrence of errors in programs. These errors must be removed to ensure proper working of programs. Hence error check is made. This process is known as “Debugging”.
            Types of errors that may occur in the program are:
 
  • Syntactic Errors:      These errors occur due to the usage of wrong syntax for the statements.
                        Syntax means rules of writing the program. 
                                    Example: x=z*/b;
There is syntax error in this statement. The rules of binary operators state that there cannot be more than one operator between two operands.
  • Runtime Errors: These Errors are determined at the execution time of the program.
Example: Divide by zero
                   Range out of bounds
          Square root of a negative number
  • Logical Errors: These Errors occur due to incorrect usage of the instruction in the program. These errors are neither displayed during compilation or execution nor cause any obstruction to the program execution. They only cause incorrect outputs. Logical Errors are determined by analyzing the outputs for different possible inputs that can be applied to the program. By this way the program is validated. 
Testing and Validating:
            Testing and Validation is performed to check whether the program is producing correct results or not for different values of input.
 
Documentation and Maintenance:
            Documentation is the process of collecting, organizing and maintaining, in written the complete information of the program for future references. Maintenance is the process of upgrading the program according to the changing requirements.
            For writing up the instructions as a program in the way that a computer can understand, we use programming languages.
 
There exists a level of programming languages.
  • Machine Language:   It is represented in 0’s and 1’s … computers can understand this language only.
  • Assembly Language: They are written in mnemonics for representing the actions.
Example: 1. ADD for addition
                 2. MOV for moving the data etc...
  • Third Generation Languages: Earlier assembler programs produced only one machine instruction for every one assembly language instruction. To speed up the process, these languages are developed.
Example: BASIC, FORTRAN, COBOL, etc…
  • Fourth Generation Languages:   To make the Programming easy, these languages are developed. The instructions in these languages are more like English Words.
Example: dBASE, FoxPro etc…
 
C is a Programmer’s Language       
            In contrast, C was created, influenced, and field-tested by working programmers. The end result is that C gives the programmer what the programmer wants: few restrictions, few complaints, block structure, stand-alone functions, and a compact set of keywords.
            Initially, C was used for systems programming. A systems program forms a portion of the operating system of the computer or its support utilities, such as editors, compilers, linkers, and the like. As C grew in popularity, many programmers began to use it to program all the tasks because of its portability and efficiency. At the time of creation, C was a much longed-for, dramatic improvement in programming languages.
 
FEATURES OF C
C being popular language, all the instructions is given using simple English like statements. It uses a compiler which translates these instructions to binary, called object code. This object code is taken by linker who generates another binary coded program, called executable code. This is code which can be executable on the system.     

                                                                      << Back


Website Maintained by : Gowtham


Today, there have been 1 visitors (1 hits) on this page!
 
About Me :
gowthambujji@gmail.com Contact : 9949541666
 
This website was created for free with Own-Free-Website.com. Would you also like to have your own website?
Sign up for free