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
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is const volatile variable in c?
What does c mean before a date?
What is the use of getchar() function?
what is stack , heap ,code segment,and data segment
Is there a built-in function in C that can be used for sorting data?
Is c object oriented?
What are near, far and huge pointers?
Explain what’s a signal? Explain what do I use signals for?
What are the types of data files?
How can a number be converted to a string?
Is c# a good language?
What is the value of uninitialized variable in c?
When is a “switch” statement preferable over an “if” statement?
Write the test cases for checking a variable having value in range -10.0 to +10.0?