C++ program to swap the given strings
kw.cpp
Output
kodingwindow@kw:~$ g++ kw.cpp
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to swap the given strings ——————————————————————————————————————————— s1=Hi There! s2=How are you today? ——————————————————————————————————————————— After swapping... ——————————————————————————————————————————— s1=How are you today? s2=Hi There! ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
C++ program to find the length of a given string
C++ program to reverse a given string using loops
C++ program to reverse a given string using predefined methods
Advertisement