why program counter is 16 bit?

Answer Posted / sandeep rehlan

Since Program counter stores the address of the next
instruction to be executed.and address are of 2 bytes.
So,the program counter is a 16 bit.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can you avoid including a header more than once?

805


What is a wrapper function in c?

820


write a program to rearrange the array such way that all even elements should come first and next come odd

2009


What are loops in c?

758


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

891


What are the 3 types of structures?

757


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1940


Difference between macros and inline functions? Can a function be forced as inline?

912


What is structure data type in c?

737


Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?

801


Do you know the difference between malloc() and calloc() function?

804


Why do we use int main?

828


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2882


What is pointer & why it is used?

794


What is the sizeof () a pointer?

722