How does pointer work in c?


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

Post New Answer

More C Interview Questions

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

4 Answers  


What are preprocessor directives?

0 Answers  


write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?

3 Answers   Mind Tree,


Should a function contain a return statement if it does not return a value?

0 Answers  


Write a code to generate divisors of an integer?

0 Answers   Ericsson,






Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9

0 Answers   HCL,


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


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

1 Answers  


What is zero based addressing?

0 Answers  


logic for x=y^n

1 Answers   Delphi,


What is the difference between procedural and functional programming?

0 Answers  


Categories