1 / 7

Programming 1 C++

Programming 1 C++. Book : A Complete Guide to Programming in C++ Blog : http://csc240.wordpress.com Office Hours : Tues: 8-9 , 10-12 Wed: 8-10 E-mail : hyabdullrahman@pnu.edu.sa Software: Visual Studio 2008. File  New Project. Project  add new item. Example #1.

ianna
Télécharger la présentation

Programming 1 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. Programming 1 C++

  2. Book: A Complete Guide to Programming in C++ Blog : http://csc240.wordpress.com Office Hours : Tues: 8-9 , 10-12 Wed: 8-10 E-mail : hyabdullrahman@pnu.edu.sa Software: Visual Studio 2008 .

  3. File  New Project

  4. Project  add new item

  5. Example #1 #include <iostream> using namespace std; int main() { cout << "Enjoy yourself with C++!" << endl; return 0; }

  6. Example #2 #include <iostream> using namespace std; int main() { cout << " Oh what " << endl; cout << " a happy day! " << endl; return 0; }

More Related