C Language - C Pointers
Questions No: 1/9

How to find the length of an array in C?

Questions No: 2/9

What will be the output of the following code?

int x = 10, y = 20;
int *p1 = &x, *p2 = &y;
printf("%d", *p1 + *p2)

Questions No: 3/9

What is the correct way to declare a pointer to an integer in C?
C में किसी इन्टिजर वेरिएबल का पॉइंटर वेरिएबल बनाने का सही तरीका क्या है?

Questions No: 4/9

What does the following declaration mean in C? int (*p)[10];

Questions No: 5/9

What is the correct way to declare a pointer to an integer in C?

Questions No: 6/9

What is the value of a pointer variable?

Questions No: 7/9

Which of the following is the correct way to pass a pointer to a function?

Questions No: 8/9

What does the "&" operator do in the context of pointers?

Questions No: 9/9

Given the declaration int arr[3] = {1, 2, 3};, what is the value of *arr?