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 |
Can a program have multiple main() functions?
Hi, main() { } Is a user defined function or Built in Functionn
difference between object file and executable file
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
If null and 0 are equivalent as null pointer constants, which should I use?
without using arithmatic operator solve which number is greater??????????
what is mallloc()?how it works?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Is anything faster than c?
Can you explain the four storage classes in C?
WHO WROTE C LANGUAGE?
Why should I use standard library functions instead of writing my own?