Posts

Showing posts with the label C Lecture Notes

C Programming Lectures......calculator

C Programming Lectures...Introducing Variables....

C Programming Lectures...Data Types..

Understanding Header Files

  Collection of pre-defined Function Necessary For the operation of a program.                                 Names of the header files finish with .H Header Files 1-       String. H –Contains String Manipulation Function. 2-       Alloc. H – Includes memory allocation Function. 3-       Time .H – Consists of time related Function 4-       Conio. H – Console input & output Function 5-        Ctype  H – Include type conversion function 6-       Stdlib. H – Standard Library function 7-       Graphics .H – Has Graphics Function 8-       Dos .H – Define date , time & Sound Related Function 9- ...

Structure of ‘C’ Program

The Structure of ‘C’ Program “C Language also has the Standard Structure “                 < Include Header Files >                 [Global Declarations]                 Main ( )                      {                          < Local Declarations>;                            < Statements>;                      }   ...

Compiler & Interpreter

Compiler & Interpreter                  Compiler -  o    Transform Source Code into Machine Code. o    Perform Checks the whole Program  o    C-Language is Compiler based program.                 Interpreter – o    Performs checks Line by Line. o    Slower than a Compiler. o    Similar to Compiler. Source.C – |Compiler|--- – Source. Obj – |Linker-|---Source.Exe

The Programming Languages

The Programming Languages                 Artificial Languages used to Control the Behavior & Properties of a Computer.                 Syntax - that refers to the Spelling & Grammar.                 Uses - Application Development (Payroll, Banking and Reservation) etc.                 Utilities -Predefined API                 Servers -Share data to Other Computers                 System Programs –OS               T ypes – o      Low Level or machine Language. o ...

Inspire With C Programming

Inspire With C Programming UNIX OS : Widely Used in both Servers & Work Stations. Direct-X:  Application Program Interface (API) o    Creating & Managing Graphics etc. Written in C, visual C/C++, or Java.            SDL-Simple direct media Layer/Library ·          Supports 20 graphics, Open GL, Sound, Events, Threads, Networking ·          Written in C, also Ada, C#, Eiffel, Erlang, Euphoria, Java, and Lisp etc.  Frame Works -       Apple’s Mac Applications.           Symantec’s think class Libraries.

Course Objectives in C Programming

Course Objectives in C Programming ·          The Basic Element of C Writing a C Program ·          Data Types ·          Declaring Variables ·          Operators Looping & Conditional Statements ·          Arrays ·          Modular Programs – Functions ·          Pointers ·          Dynamic Memory Allocations ·          Preprocessors Directives ·          Structures & Unions ·          File Management Systems ·          Types of Sorting ·       ...