int *a[5] refers to
Answers were Sorted based on User's Feedback
Answer / subha raman
it simply refers to the value stored in a[4]..."*" denotes
the value stored and "&" denotes the address of the
pointer..
| Is This Answer Correct ? | 0 Yes | 7 No |
the element of 5th row and 0th column
| Is This Answer Correct ? | 6 Yes | 14 No |
What do you mean by Recursion Function?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What are linker error?
write a program to delete an item from a particular location of an linear array?
What are type modifiers in c?
What is zero based addressing?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
When should a type cast be used?
What is a nested formula?
write a program to sort the elements in a given array in c language
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is difference between structure and union with example?