Explain the difference between null pointer and void pointer.


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

Post New Answer

More C Interview Questions

what is the difference between arrays and linked list

26 Answers   MAHINDRA, Tech Mahindra, Wipro,


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


What tq means in chat?

0 Answers  


What is an lvalue in c?

0 Answers  






Why is %d used in c?

0 Answers  


Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5

3 Answers  


Find the largest number from the given 2 numbers without using any loops and the conditional operator.

2 Answers  


What is string constants?

0 Answers  


What are the rules for identifiers in c?

0 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


Program to display given 3 integers in ascending order

1 Answers   N Tech,


Categories