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 / vijay r15
error
Bcoz there is no initialization for x
With thanks and regards
Vijay r15
raj.vijay55@gmail.com
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is the sizeof () operator?
Why pointers are used in c?
What are the advantages of using new operator as compared to the function malloc ()?
All technical questions
Explain the difference between getch() and getche() in c?
What is void main () in c?
Explain how does flowchart help in writing a program?
Why main is not a keyword in c?
How does placing some code lines between the comment symbol help in debugging the code?
What are the different properties of variable number of arguments?
What is a string?
Is multithreading possible in c?
Is there any data type in c with variable size?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above