Hello World An obligatory first program. C++ C developed in 1971 C++ developed in 1983 – Standardized in 1998 – Updated in 2011, again in 2014

Slides:



Advertisements
Similar presentations
DL Windows Software “Rules” Import a CSV File From Excel
Advertisements

RCFN.MDB Setup This is an ACCESS 2000 format database Save the RCFN.MDB database to your local or network drive Open the RCFN.MDB Click on the Tools Menu.
Windows XP / Microsoft Word Computer Applications.
Stored procedures and views You can see definitions for stored procedures and views in the demo databases but you can’t change them. For views, expand.
BCS Schoolwires by Brenda Luther. User Name and Employee Password.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Lesson One: The Beginning Chapter 2: Processing Learning Processing Daniel Shiffman Presentation by Donald W. Smith Graphics from built-in help reference.
CSCOPE LESSON PLANNER. LESSON PLANNER Click “Tools ” Tab.
Java Programming Working with TextPad. Using TextPad to Work with Java This text editor is designed for working with Java You can download a trial version.
CSS Box Model An CSS Primer Tutorial. Project 04 Open Finder or Windows explorer and path the folder where you store your class project work. Make a copy.
SET UP COMPUTER ** PLEASE BE AWARE SCREENSHOTS MAY NOT MATCH **
Editing Java programs with the BlueJ IDE. Working environments to develop (= write) programs There are 2 ways to develop (write) computer programs: 1.Using.
Word Lesson 16 Working with Macros Microsoft Office 2010 Advanced Cable / Morrison 1.
Module 2: Managing User and Computer Accounts
Customizing Microsoft Project
SAG Infotech Private Limited Soft solutions for those can not afford to make errors. How to Update New changes in Our Softwares?
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
1 Integrated Development Environment Building Your First Project (A Step-By-Step Approach)
What’s New in Visio 2007 Office Visio 2007 is easy to use and comes with diagram- specific shapes and tools that enable you to quickly create professional-looking.
Access The L Line The Express Line to Learning 2007 L Line L © Wiley Publishing All Rights Reserved.
Clearly Visual Basic: Programming with Visual Basic 2008 Chapter 4 I Need a Tour Guide.
Web Design (2) Brackets - introduction. Brackets Brackets is a web design code editor It is an open-source project initiated by Adobe (creator of Dreamweaver)
Module 2: Managing User and Computer Accounts. Overview Creating User Accounts Creating Computer Accounts Modifying User and Computer Account Properties.
By Jesus Juarez. Download the software from or your preferred website.
Module 1: Getting Started. Introduction to.NET and the.NET Framework Exploring Visual Studio.NET Creating a Windows Application Project Overview Use Visual.
Using Macros in Minitab
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
Module 4 Planning for Group Policy. Module Overview Planning Group Policy Application Planning Group Policy Processing Planning the Management of Group.
Intro to CS ACO 101 Lab Rat. Academic Integrity What does that mean in programming? Log into Blackboard and take the test titled “Applied Computing Course.
Student Access to Office 365 CTR Meeting January 2014.
IST 222 Day 3. Homework for Today Take up homework and go over Go to Microsoft website and check out their hardware compatibility list.
Processing Workshop. What is processing? “Processing is an open source programming language and environment for people who want to program images, animation,
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
Tips and Tricks for Upgrading Catie Cotcher. Session Overview Getting to know your clients data file Data file integrity and considerations Reports The.
Tools to track employer information including open positions, our new job matching window, and new contacts feature.
Skills Sharing: Batch files to graph with R GLEON Fellowship Workshop January 14-18, 2013 Sunapee, NH Hilary Dugan.
Lab00-Getting Started with VC Launch VS 2005 Launch Visual Studio 2005 – Start > All Programs > Microsoft Visual Studio 2005 > Microsoft Visual.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
Adxstudio Portals Training
Introduction to Eclipse Programming with an Integrated Development Environment.
Computer-made Cookies Presented by Helal Lutfi. What is a Computer Cookie?  A small text file which contains a unique ID tag.  Placed on your computer.
CSC 230 (Blum)1 Visual Basic 2005 Hello World Fall 2005 T. Blum.
How to Fix Binkw32.dll Error
1 SAVE A DRAWING AS A TEMPLATE TO REUSE: SETTINGS, DRAWING SHEETS, LAYOUTS, STYLES WITHOUT RECREATING THEM IN EACH NEW DRAWING. TO REUSE: SETTINGS, DRAWING.
TEAM FOUNDATION VERSION CONTROL AN OVERVIEW AND WALKTHROUGH By: Michael Mallar.
PERMISSION ANALYZER 2 Reports NTFS permissions from the file system combined with user and group data from the Active Directory.
Creating and Using Modules Sec 9-6 Web Design. Objectives The student will: Know how to create and save a module in Python Know how to include your modules.
Murach's C# 2012, C2© 2013, Mike Murach & Associates, Inc. Slide 1.
1 After completing this lesson, you will be able to: Use a Word template. Create a template. Use a wizard to create a document.
Intelligent Data Systems Lab. Department of Computer Science & Engineering Python Installation guide 컴퓨터의 개념 및 실습.
Internal PowerPoint Presentation Template Version A4 Black background, 16:9 size.
 CSC 215 : Procedural Programming with C C Compilers.
My Stuff & More! How to personalize your OSLIS 2.0 “dashboard” and add files to your personal space.
Digital Game Design ACST 3710 Your First Unity Program 1.
How To Make The Backup Of AVG Antivirus 2017 Definitions.
CSC 215 : Procedural Programming with C
* First of all, you need to click “Start”, “Control Panel” and then System and Security. After this, you need to click on the link ‘Back up Your Computer’
Perl A simple test.
Tips to Manually Uninstall Norton Antivirus 2012.
Module 1: Getting Started
Windows XP Professional
For any QuickBooks user who aspires to work on payroll, it is quite essential to at least know how one gets started with QuickBooks payroll. We will now.
SQL Reports Management
Today’s lesson – Python next steps
CRM 2016 Solutions and Package Deployer
CSCI N207 Data Analysis Using Spreadsheet
MicroStrategy Academic user group meeting 30 January 2018
Log on to Typing.com Type for 10 minutes
SAG Infotech Private Limited
Instructions for using the Miradi Companion Reporting Tool
Presentation transcript:

Hello World An obligatory first program

C++ C developed in 1971 C++ developed in 1983 – Standardized in 1998 – Updated in 2011, again in

QT Creator Preferred development environment – Avoid Visual Studio/other tools

Project Templates/Settings QTProject folder – In C:/User/YOU/AppData/Roaming Stores templates and preferences My website has starters to match lab templates/settings

Writing a Program Every program is a "Project"

Basic Template This is the template we want: Save to a place you can find:

The Files.cpp : – Code.pro : – project – what files to build, how to build them.pro.user : – User specific things (window placement, etc…)

The Code Our code:

Building and Running Code must BUILD before you run it: RUN runs the last build you did:

Tools  Options for all program settings Build & Run: – Always deploy project before running will force build on run Force Build Before Run