How can I do peek and poke in c?
No Answer is Posted For this Question
Be the First to Post Answer
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..
In c programming language, how many parameters can be passed to a function ?
what is the diff b/w static and non static variables in C. Give some examples plz.
What’s the special use of UNIONS?
Can a binary search tree be used as an index? If yes, how? Explain
Is main an identifier in c?
what is the structure pointer?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
What is volatile
What is the purpose of 'register' keyword in c language?
what is c?
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)