Latest SELF Aptitude Question SOLUTION: What will be output of following program? #include int main() { int a = 320; char *ptr; ptr = (char *)&a; printf("%d",*ptr); return 0; }