aboutsummaryrefslogtreecommitdiff
path: root/4.3Exercies.txt
diff options
context:
space:
mode:
authorJacobAKnox <[email protected]>2021-10-06 19:56:29 -0700
committerJacobAKnox <[email protected]>2021-10-06 19:56:29 -0700
commit1c95e4d2cfb2cd7bf4a304a32f57b4402fb49dfa (patch)
treed057bb303b970bf0b1433754ac2904db5536a655 /4.3Exercies.txt
parentpsudocode corrections (diff)
downloadcst116-lab2-jacobaknox-1c95e4d2cfb2cd7bf4a304a32f57b4402fb49dfa.tar.xz
cst116-lab2-jacobaknox-1c95e4d2cfb2cd7bf4a304a32f57b4402fb49dfa.zip
delete old files
Diffstat (limited to '4.3Exercies.txt')
-rw-r--r--4.3Exercies.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/4.3Exercies.txt b/4.3Exercies.txt
deleted file mode 100644
index e002437..0000000
--- a/4.3Exercies.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-3.
-a. int a, int b;
- There should not be a second "int" after the comma
-b. int a = b;
- int b = 0;
- A cannot be assigned the value b before be is declared
-c. int a = 0, b = 3.5;
- b is not an int
-d. char grade = "A";
- '"A"' is a string not a char
-e. char c = 1;
- 1 is a numerical value not a char
-f. int a, b, c, d, f;
- No error
-g. char x = "This is a test.";
- '"This is a test."' is a string not a char