why program counter is 16 bit?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
What are local static variables?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is difference between && and & in c?
how many key words availabel in c a) 28 b) 31 c) 32
What does void main return?
Distinguish between actual and formal arguments.
What is the size of a union variable?
Where local variables are stored in c?
What is extern c used for?
what is the use of operator ^ in C ? and how it works?
When should a type cast be used?
What is memory leak in c?