What are the uses of a pointer?


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

Post New Answer

More C Interview Questions

Explain how do you declare an array that will hold more than 64kb of data?

0 Answers  


What is the usage of the pointer in c?

0 Answers  


why we use "include" word before calling the header file. is there any special name for that include??????

1 Answers   TCS,


What functions are used in dynamic memory allocation in c?

0 Answers  


what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }

9 Answers  






WRITE A PROGRAM TO FIND A REVERSE OF TWO NO

7 Answers  


Array is an lvalue or not?

0 Answers  


print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5

3 Answers   Winit,


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

0 Answers  


What is masking?

0 Answers  


Is null always defined as 0(zero)?

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


Categories