Company: Qualcomm
Difficulty: easy
What will be the output of the program given below? #include <stdio.h> int main() { int x = 5, *p; p = &x; printf("%d", ++*p); return 0; }