Menu

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

A is a while A is a A string is terminated by a character, which is written as The array char name[10can consist of a max

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;

“A” is a while ‘A’ is a A string is terminated by a character, which is written as The array char name[10can consist of a maximum of characters to become an String The array elements are always stored in memory locations. char X = “this is a string”; char X[4] = {‘t’, ‘h’, ‘i’, ‘s’, ‘ ‘ }; char x = “A”; char x[100] = “A”; Show transcribed image text “A” is a while ‘A’ is a A string is terminated by a character, which is written as The array char name[10can consist of a maximum of characters to become an String The array elements are always stored in memory locations.
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