COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
string_basics.cpp File Reference
#include <iostream>
#include <string>
Include dependency graph for string_basics.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 5 of file string_basics.cpp.

5 {
6 string greeting = "Hi", name = "COMP2113_ENGG1340";
7 cout << greeting << " " << name << endl;
8 greeting = "Good morning";
9 cout << greeting << " " << name << endl;
10 return 0;
11}