32 C++ 29 08 2023
32 C++ 29 08 2023
32 C++ 29 08 2023
Usage of C++
Ends execution
of main() which ends the
program
The cout Output Statement
• Syntax
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
cout << "What is your name? ";
cin >> name;
#include <iostream>
using namespace std;
int main( ) {
cout << "C++ Tutorial";
cout << “ point"<<endl;
cout << "End of line"<<endl;
}
C++ Program
#include <iostream>
using namespace std;
int main() {
cout << "Hello C++ Programming";
return 0;
}
File: main.cpp
Basic Data Types
the basic data types
C++ Keywords
• You cannot use it as a variable name,
C++ Keywords
• You cannot use it as a variable name,