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
What is the purpose of sprintf() function?
What are the modifiers available in c programming language?
Can a void pointer point to a function?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Explain how can I make sure that my program is the only one accessing a file?
Give differences between - new and malloc() , delete and free() ?
What is break statement?
What is the need of structure in c?
Is struct oop?
What is a pointer on a pointer in c programming language?
Why c is known as a mother language?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What oops means?
What is difference between array and pointer in c?