Solved

Consider the Following Declaration: Char Str[15];

Question 24

Multiple Choice

Consider the following declaration: char str[15];.Which of the following statements stores "Blue Sky" into str?


A) str = "Blue Sky";
B) str[15] = "Blue Sky";
C) strcpy(str, "Blue Sky") ;
D) strcpy("Blue Sky") ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions