Fill the blanks in the program...
Hai friends i am new to this forum . I have one problem please solve it ...
Code:
#include<stdio.h>
void fun(.........);/*fill the blanks in this line*/
main()
{
int *p=1000;
fun(..........);/*fill the blanks in this line*/
printf("%d\n",*(int*)p);
}
void fun(..........)/*fill the blanks in this line*/
{
.........
........./*fill the function body*/
}
friends this is the program you should not change any lines in this program and you want to fill the blanks which i had mentioned as (..........). And i need 2000 as the output from the printf in main.....
Please solve it....