[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C Programming :: Pointers - Discussion

Home > C Programming > Pointers > MCQs Questions Discussion

37 / 60

Which of the statements is correct about the following program?

#include<stdio.h>  
int main() {     
  int i = 10;     
  int *j = &i;     
  return 0;
}

Aj and i are pointers to an 'int'.

Bi is a pointer to an int and stores address of j.

Cj is a pointer to an int and stores address of i.

Dj is a pointer to a pointer to an int and stores address of i.

Answer: Option (Login/Signup)

Show Explanation

Asked In :: Wipro

Post Your Answer Here:     

No Discussion on this question yet!