What do you mean by invalid pointer arithmetic?


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

Post New Answer

More C Interview Questions

void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789

5 Answers  


What are volatile variables?

1 Answers   Mind Tree,


How to calculate sum

2 Answers  


How to create struct variables?

0 Answers  


where do we use structure pointer?

1 Answers  


what is the program to display your name in any color?

2 Answers   HCL,


Describe explain how arrays can be passed to a user defined function

0 Answers  


Explain how does free() know explain how much memory to release?

0 Answers  


void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }

3 Answers  


my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details

2 Answers  


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


Categories