Home » Technical Questions » Programming

What will be output of following program ? #include int main() { int a = 10; void *p = &a; int *ptr = p; printf("%u",*ptr); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!