//Downloaded From theonlinetutorials.com
//Source code
#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
int a=3000,b=20,sum;
char *p;
p=(char *)a;
sum= (int)&p[b]; //adding a & b
printf("Answer is :");
printf("%d",sum);
getch();
return 0;
}
Not Satisfied ? Just search & get the result
Related posts:
