Home » C Programming » Pointers

Which of the statements is correct about the program? #include int main() { int i=10; int *j=&i; return 0; }

Correct Answer: j is a pointer to an int and stores address of i

← Previous Question

More Questions from Pointers

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion