Posts

Showing posts with the label C Interview Question

C Interview Link

Image
Question Rating View Answer What does it mean when a pointer is used in an if statement? View Answer When would you use a pointer to a function? View Answer Why should we assign NULL to the elements (pointer) after freeing them? View Answer What is file pointer and its working method? View Answer What is indirection? View Answer Following declarations are same const char *s; char const *s; View Answer Difference between :- 1) NULL pointer and NULL macro ? View Answer What is the difference between far and near? View Answer WRITE A C PROGRAMME TO FIND OUT THE AREA OF A CIRCLE USING POINTER. View Answer Why should we assign NULL to the elements (pointer) after freeing them ? View Answer In the following code, what is p2? typedef int* ptr ptr p1, p2; View Answer What do you mean by normalisation of pointers View Answer Difference between arrays and pointers? View Answer Between a long pointer and a char pointer , which one consumes more memo...