Top

Discussion

Will the following program give any warning on compilation in TurboC (under DOS)?

#include

int main()
{
    int *p1, i=25;
    void *p2;
    p1=&i;
    p2=&i;
    p1=p2;
    p2=p1;
    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