333) Consider the following program.
main()
{
char x[10], *ptr = x;
scanf("%s", x);
change(&x[4]);
}
change ( char a[ ] )
{
puts(a);
}
If abcdefg is the input, the output will be
Answer is:
efg
Related C Programming MCQ with Answers
Answer is:
both {* (x + i ) is same as * (&x [i] )} & {* (x + i) is same as x[i]}
Answer is:
All of these
Answer is:
first (second);
Answer is: