int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}};
int *p=&a;
printf(“%d”,*(*(x+1)+3));
Answer Posted / e
a instead of x then answer would be 5
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Can we increase size of array in c?
What is extern storage class in c?
List a few unconditional control statement in c.
What is the difference between text files and binary files?
When is a “switch” statement preferable over an “if” statement?
Where is volatile variable stored?
What is the correct declaration of main?
Why is c called a structured programming language?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is the collection of communication lines and routers called?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Is c language still used?
What is memory leak in c?
What is difference between function overloading and operator overloading?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?