DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents c pointer

1. What will be output of following program? #include void main(){ int a = 320; char *ptr; ptr =( char *)&a; printf("%d ",*ptr); getch(); } (A) 2 (B) 320 (C)…

Documents L5 – Addressing Modes 1 Comp 411 – Spring 2008 1/29/08 Operands and Addressing Modes Where is...

Slide 1 L5 – Addressing Modes 1 Comp 411 – Spring 2008 1/29/08 Operands and Addressing Modes Where is the data? Addresses as data Names and Values Indirection Slide 2…