Programming Languages
C
Objective
Mar 08, 2013
What will be output if you will compile and execute the following c
code?
void main(){
int i=320;
char *ptr=(char *)&i;
printf("%d",*ptr);
}
Detailed Explanation
No Explanation
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts