diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /659/CH4/EX4.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '659/CH4/EX4.6')
-rwxr-xr-x | 659/CH4/EX4.6/exm4_6.sce | 18 | ||||
-rwxr-xr-x | 659/CH4/EX4.6/exm4_6_output.PNG | bin | 0 -> 21826 bytes |
2 files changed, 18 insertions, 0 deletions
diff --git a/659/CH4/EX4.6/exm4_6.sce b/659/CH4/EX4.6/exm4_6.sce new file mode 100755 index 000000000..983b89596 --- /dev/null +++ b/659/CH4/EX4.6/exm4_6.sce @@ -0,0 +1,18 @@ +// Example 4.6
+// Reading of strings using %wc and %ws.
+
+//scanf() can only read one character at a time and return it to name1, therefore
+//mscanf() is used that can read more than one character
+printf("Enter serial number and name one:");
+[n,no,name1]=mscanf("%d %15c");
+printf("%d %15s\n",no,name1);
+
+//Read and display a string
+printf("Enter serial number and name two:");
+[no,name2]=scanf("%d %s");
+printf("%d %15s\n",no,name2);
+
+//Read and display a string of width 15
+printf("Enter serial number and name three:");
+[no,name3]=scanf("%d %15s");
+printf("%d %15s",no,name3);
\ No newline at end of file diff --git a/659/CH4/EX4.6/exm4_6_output.PNG b/659/CH4/EX4.6/exm4_6_output.PNG Binary files differnew file mode 100755 index 000000000..efd71043d --- /dev/null +++ b/659/CH4/EX4.6/exm4_6_output.PNG |