Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C Programming
»
Pointers
Which of the statements is correct about the program? #include<stdio.h> int main() { int i=10; int *j=&i; return 0; }
j and i are pointers to an int
i is a pointer to an int and stores address of j
j is a pointer to an int and stores address of i
j is a pointer to a pointer to an int and stores address of i
Show Answer
Correct Answer:
j is a pointer to an int and stores address of i
← Previous
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment