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));
Answers were Sorted based on User's Feedback
Answer / 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 |
Is fortran still used in 2018?
code for selection sort?
What is the main differences between C and Embedded C?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is the difference between if else and switchstatement
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
what does " calloc" do?
Does * p ++ increment p or what it points to?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Which is better malloc or calloc?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y