Top

Discussion

Will the program compile in Turbo C?

#include
int main()
{
    int a=10, *j;
    void *k;
    j=k=&a;
    j++;
    k++;
    printf("%u %u\n", j, k);
    return 0;
}

 

  • A.Yes
  • B.No

Answer: B

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment