why program counter is 16 bit?

Answer Posted / vishnu

Program counter depends on the architecture. since
instructions will be fetched from memory and inorder to
address the address in the memory PC should be 16 bit. It
contains address from which memory should the next
instruction is fetched.

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which is an example of a structural homology?

785


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

764


When is a “switch” statement preferable over an “if” statement?

650


Is it possible to use curly brackets ({}) to enclose single line code in c program?

800


How can I write a function analogous to scanf?

658






Why header files are used?

646


What is a string?

666


What is c language in simple words?

595


What is multidimensional arrays

632


The file stdio.h, what does it contain?

667


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

1800


What is meant by type specifiers?

660


Define macros.

785


which is an algorithm for sorting in a growing Lexicographic order

1394


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

631