| Shivani shukla asks : SOLVE THIS RIDDLE in some situations, i oppose the motion in other situations, i facilitate the motion but, i always oppose the relative motion between two moving surfaces. put some lubricant, and i become small there make the moving surfaces rough i make the movement tough i may be - static, sliding or rolling but whenever two surfaces are in motion i am always there, tell me who i am ! |
| Lavanya bommini asks : main() { static int a[3][3]={1,2,3,4,5,6,7,8,9}; int i,j; static *p[]={a,a+1,a+2}; for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%dt%dt%dt%dn",*(*(p+i)+j), *(*(j+p)+i),*(*(i+p)+j),*(*(p+j)+i)); } } |