When should we use pointers in a c program?


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

Post New Answer

More C Interview Questions

main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }

1 Answers   Vector, Vector India,


Explain what are linked list?

0 Answers  


difference between c and c++?

2 Answers  


Explain what header files do I need in order to define the standard library functions I use?

0 Answers  


How can you invoke another program from within a C program?

0 Answers  






How is null defined in c?

0 Answers  


Explain setjmp()?

0 Answers  


What is the general form of a C program?

0 Answers  


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

0 Answers  


How many types of operator or there in c?

0 Answers  


What is structure packing ?

2 Answers   HP,


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


Categories