I have written a C program without variable. And I want to print the value at that memory location.How to print that value?
code is like:-
code is like:-
Code:
int main()
{
printf("Enter value:");
scanf("%d",1245024);
/* how to print the value here */
return 0;
}
Comment