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 use of bit field?
What is a ternary operator in c?
Where static variables are stored in memory in c?
How do you use a 'Local Block'?
How do I use void main?
What does printf does?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What does %p mean c?
List some basic data types in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What does %d do in c?
What is a null pointer in c?
What happens if you free a pointer twice?
What is the correct code to have following output in c using nested for loop?
explain what is an endless loop?