1 / 43

Module 6: Introduction to C Language ITEI102 Introduction to Programming

Module 6: Introduction to C Language ITEI102 Introduction to Programming. Structure of C++ Program - Programming Terminologies - Microsoft Visual Studio 2010 - The C++ Screen - Console Output and Escape Sequences - Console Input - Data Types. Introduction to C > Microsoft Visual C++.

teddy
Download Presentation

Module 6: Introduction to C Language ITEI102 Introduction to Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Module 6: Introduction to C Language ITEI102 Introduction to Programming Structure of C++ Program - Programming Terminologies - Microsoft Visual Studio 2010 - The C++ Screen - Console Output and Escape Sequences - Console Input - Data Types

  2. Introduction to C > Microsoft Visual C++

  3. Introduction to C> Microsoft Visual C++

  4. Introduction to C> IDE of MSVC

  5. Versions: • There are five current versions of Visual C++ available: • Microsoft Visual C++ 2010 Express Edition • (available as a free download at the MSDN site) • Microsoft Visual Studio 2010 Professional • Microsoft Visual Studio 2010 Team Foundation • Microsoft Visual Studio 2010 Premium • Microsoft Visual Studio 2010 Ultimate • Note: Visual C++ is included in Visual Studio.

  6. Introduction to C language > Why use C? Introduction to Computer Programming6

  7. Introduction to C language > Why use C?

  8. Introduction to C language > Brief History of C

  9. Introduction to C language > Advantages of C

  10. Introduction to C language > Running C Programs

  11. Introduction to C language > Running C Programs> Editing

  12. Introduction to C language > Running C Programs> Compiling

  13. Introduction to C language > Running C Programs> Linking

  14. Introduction to C language > Running C Programs> Executable Files

  15. Program is created in the editor and stored on disk. Preprocessor program processes the code. Compiler creates object code and stores it on disk. Compiler Linker links the object code with the libraries, creates a.out and stores it on disk Primary Memory Loader Loader puts program in memory. Primary Memory CPU takes each instruction and executes it, possibly storing new data values as the program executes. Preprocessor Linker Editor Disk Disk Disk Disk Disk CPU . . . . . . . . . . . . Introduction to C language > Basics of a Typical C++ Environment • Phases of C++ Programs: • Edit • Preprocess • Compile • Link • Load • Execute Introduction to Computer Programming15

  16. Introduction to C language > Structure of C programs > C’ Character set

  17. Introduction to C language > Structure of C programs > Constants

  18. Introduction to C language > Structure of C programs > Integer Constants

  19. Introduction to C language > Structure of C programs > Real Constants

  20. Introduction to C language > Structure of C programs > Real Constants

  21. Introduction to C language > Structure of C programs > Character Constants

  22. Introduction to C language > Structure of C programs > String Constants

  23. Introduction to C language > C Variable

  24. Introduction to C language > C Variables

  25. Introduction to C language > C Keywords

  26. Introduction to C language > C Keywords

  27. Introduction to C language > Identifiers

  28. Introduction to C language > The form of a C Language

  29. Introduction to C language > The Layout of a C Language

  30. Introduction to C language > Your First Program

  31. Introduction to C language > Adding Comments to a Program

  32. Introduction to C language > Anatomy of C Programs

  33. Data Types, operators and Expressions> Data Types Introduction to Computer Programming33

  34. Data Types, operators and Expressions> Data Types>Integer Number Variables Introduction to Computer Programming34

  35. Data Types, operators and Expressions> Data Types>Decimal Number Variables Introduction to Computer Programming35

  36. Data Types, operators and Expressions> Data Types> Character Variables Introduction to Computer Programming36

  37. Data Types, operators and Expressions> Assignment Statement Introduction to Computer Programming37

  38. Data Types, operators and Expressions> Assignment Statement

  39. Data Types, operators and Expressions> Global Variables Introduction to Computer Programming39

  40. Data Types, operators and Expressions> Constant Data Types

  41. Data Types, operators and Expressions> Constant Data Types> Example program Introduction to Computer Programming41

  42. Data Types, operators and Expressions> User defined data types

  43. Data Types, operators and Expressions> Enumerated data types Introduction to Computer Programming43

More Related