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 |
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
program to locate string with in a string with using strstr function
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is strcmp in c?
Explain how can I make sure that my program is the only one accessing a file?
Why is c fast?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
List some applications of c programming language?
how to swap two nubers by using a function with pointers?
How does the C program handle segmentation faults?
write a c program to check weather a particluar bit is set or not?