1 / 7

computer programming in c

programming basics,syntax and functions

Download Presentation

computer programming in c

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. C++ BASICS PROGRAMMING BASICS

  2. COMPUTER PROGRAM A PROGRAM IS A SET OF INSTRUCTIONS THAT CAN BE EXECUTED BY COMPUTER C ++ PROGRAMMING a set of keywords and rules is called syntax of a language

  3. RESERVED WORDS IT A WORD WHOSE MEANING IS ALREADY DEFINED BY A COMPILER. THEY CAN'T BE USD AS AN IDENTIFIER,VARIABLE,FUNCTION OR LABEL. THERE ARE TOTAL 95 RESERVED WORDS IN C++. AND AUTO BOOL DELETE FALSE LONG NOT

  4. DATA TYPES THE STORAGE FORMAT AND SIZE OF VARIOUS DATA IS TERMED AS DATA TYPES. FOR EXAMPLE: BOOL CHAR INT FLOAT DOUBLE

  5. BASIC STRUCTURE 1.PREPROCESSOR DIRECTIVER #include <iostream> using namespace std; OF C++ 2.MAIN FUNCTION HEADER int main() 3.BODY OF PROGRAM { return 0; }

  6. MEDIUM TEXT

  7. ESCAPE SEQUENCES \n \t \a \b \r \\ \' \"

More Related