Latest TCS Aptitude Question SOLUTION: What is the output of following program? #include int main() { void *ptr1, *ptr2, x; int y; x = 100; y = 200; ptr1 = &x; ptr2 = &y; printf("%d", *ptr1); pri