What will be the output of the following code?
int x = 10, y = 20; int *p1 = &x, *p2 = &y; printf("%d", *p1 + *p2)