3. What is the output of the following code?
void modify(char* x)
{
x = x + 2; x[2] = 'Z';
}
main()
{
char str[] = "C - Hero";
modify(str);
printf("%s", str);
}
Answers
Answered by
0
Answer:
.....
....
....
..........................................
Similar questions