Code
#include<stdio.h>
#include<conio.h>
int main()
{
int a=10;
void *p;
p=&a;
clrscr();
getch();
return;
}
Copyright GeekInterview.com
I know that this program is wrong as error is shown on compiling it.
Anyone please provide a simple program using Void pointer in C.
Thanks in advance :)
A program in C using Void Pointer
I know that this program is wrong as error is shown on compiling it.
Anyone please provide a simple program using Void pointer in C.
Thanks in advance :)
Questions by KRIPA SHANKAR
Related Answered Questions
Related Open Questions