C++ Notes
C++ Notes
1.A CPU
2.Interactive devices
3.Storage devices
Assembly Languages
Compiler
C
The C language was developed in 1972 by Dennis Ritchie at
Bell Telephone laboratories, primarily as a systems programming
language.
C++
C++ (pronounced “see plus plus”) was developed by Bjarne
Stroustrup at Bell Labs as an extension to C, starting in 1979.
C++’s most notable innovation over C is that it supports
object-oriented programming.
This is the “what” step, where you figure out what problem
you are intending to solve.
This is the “how” step, where you determine how you are
going to solve the problem you came up with in step 1.
Many simple C++ programs only have one source code file,
but complex C++ programs can have hundreds or even thousands of
source code files.
Building.
Once you can run your program, then you can test it.
Testing is the process of assessing whether your software is
working as expected. Basic testing typically involves trying
different input combinations to ensure the software behaves
correctly in different cases.