aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk5/lab4/swappy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk5/lab4/swappy.cpp')
-rw-r--r--ee1301/wk5/lab4/swappy.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/ee1301/wk5/lab4/swappy.cpp b/ee1301/wk5/lab4/swappy.cpp
deleted file mode 100644
index a2810a6..0000000
--- a/ee1301/wk5/lab4/swappy.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <iostream>
-using namespace std;
-
-void swap (int &a, int &b);
-int main(int argc, char* argv[]) {
- if (argc !=2) {
- cout << "Incorrect number of arguments! USAGE:" << endl
- << " swappy <string>" << endl;;
- return 3;
- }
- int i;
- for (i=0; i<10000; i++) {
- if (argv[1][i]=='\0') {
- break;
- }
- }
- swap(argv[1][0],argv[1][(i-1)]);
- cout << argv[1] << endl;
-
-}
-void swap (char &a, char &b) {
- char temp;
- temp=a; a=b; b=temp;
-}