a sequence of bytes with one to one corrspondence to those in the external device
a) sequential addressing
b) address
c) byte code
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Explain can static variables be declared in a header file?
What are preprocessor directives?
Between macros and functions,which is better to use and why?
Compare array data type to pointer data type
What ios diff. Between %e & %f?
totally how much header files r in c language
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
difference between malloc and calloc
how do we remove the printed character in printf statement and write next it it
why we use pointer in c
What is difference between Structure and Unions?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..