Describe wild pointers in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  


Can variables be declared anywhere in c?

0 Answers  


Is null equal to 0 in sql?

0 Answers  


Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.

3 Answers   SilverKey,


Write a program to compute the following 1!+2!+...n!

4 Answers  






the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above

0 Answers  


why you will give me a job in TCS.

7 Answers   TCS,


What is difference between array and structure in c?

0 Answers  


what is difference between overriding and overloading?

1 Answers  


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..

1 Answers  


What is an lvalue in c?

0 Answers  


Does c have circular shift operators?

0 Answers  


Categories