Computer Science, asked by dinesh2274, 1 month ago

12. What is the output of C Program with
Strings.?
int main()
{
char aryl="Discovery Channel";
printf("%s",ary);
return 0;
}
(1 Point)​

Answers

Answered by NotThareesh
0

Answer:

The program will crash

Explanation:

If you haven't made a mistake of missing a letter 'l' in variable aryl on Line 4, then the output would be Discovery Channel. Since, you missed the letter l, the program will crash.

Similar questions