Explain 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 purpose of macro in C language?

0 Answers   Fidelity,


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

0 Answers   Gamesa, Satyam,


plz answer.. a program that takes a string e.g. "345" and returns integer 345

4 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What is an auto variable in c?

0 Answers  


What is wrong with this statement? Myname = 'robin';

0 Answers  


What is the memory allocated by the following definition ? int (*x)();

2 Answers   ADITI,


Write a program to generate the Fibinocci Series

0 Answers   TISL,


what is the use of operator ^ in C ? and how it works?

2 Answers  


Why we use int main and void main?

0 Answers  


What are the commands should be given before weiting C Program i.e, Cd.. like

4 Answers   IBM, Infonet, Satyam, Tech Mahindra,


what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??

3 Answers   Oracle,


Categories