I'm having a little fiddle with pointer arithmetic and just pointer in general and I've pulled together this code.
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
int main(int argc,char **argv){
void *ptr=NULL;
char a='a';
int i0=0;
char b='b';
int i1=1;
char c='c';
int i2=2;
ptr=&a;
//What do I do here to get to i0?
printf("%d",(int*)ptr); //and to print it out?
while(1);
return 0;
}
My question is exactly what I put into the comments. How do I get ptr to point to i0 without doing 'ptr=&i0;' using pointer arithmetic? Also how do I then print it out correctly for characters and integers(one method for char and one for int).
Thanks in advance. ;)
