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
Explain how can you avoid including a header more than once?
What is a wrapper function in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What are loops in c?
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
What are the 3 types of structures?
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.
Difference between macros and inline functions? Can a function be forced as inline?
What is structure data type in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Do you know the difference between malloc() and calloc() function?
Why do we use int main?
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.
What is pointer & why it is used?
What is the sizeof () a pointer?