General Requirement Solve Hand Try Solve Without Using Compiler 1 Fill Blanks B Point Err Q43895020
General requirement is to solve by hand and try tosolve without using any compiler
1)
a. Fill in the blanks

b. Point out any error in the following statemens.Write “no error” in the right side if you think there is no error.Otherwise, correct the errors:
![char X = this is a string; char X[4] = {t, h, i, s, }; char x = A; char x[100] = A;](https://media.cheggcdn.com/media/997/997e01aa-a108-4af4-9d5b-39457c28425e/image.png)
char X = “this is a string”; char X[4] = {‘t’, ‘h’, ‘i’, ‘s’, ‘ ‘ }; char x = “A”; char x[100] = “A”;
Expert Answer
Answer to General requirement is to solve by hand and try to solve without using any compiler 1) a. Fill in the blanks b. Point ou…
OR