Can Any one please tell me how can I compile and see the result(on the screen) of the following program using VisualStudio? include main() { int i=3; int*j; j = &i; printf("The value of i=%d",*j); }
C
Chilakaluri
@Chilakaluri
Can Any one please tell me how can I compile and see the result(on the screen) of the following program using VisualStudio? include main() { int i=3; int*j; j = &i; printf("The value of i=%d",*j); }