GeeksforGeeks » Interview Questions
TCS Interview Question for Software Engineer/Developer (Fresher) about CPuzzles
(2 posts)-
int main() { int x=5, *p; p = &x; printf("%d",++*p); } -
6
Reply
You must log in to post.
int main()
{
int x=5, *p;
p = &x;
printf("%d",++*p);
}
6
You must log in to post.