Answer Posted / achal ubbott
Above is correct. E.g. an ARM processor stores an integer(4
bytes wide) at an address which is multiple of 4 only. So
an integer would not be stored at say 0x0009 address.
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
Define namespace in c++?
If you don’t declare a return value, what type of return value is assumed?
What is function prototyping? What are its advantages?
Is c++ slower than c?
What is the type of 'this' pointer?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
What is ostream in c++?
Explain the difference between c & c++?
How the keyword struct is different from the keyword class in c++?
When are exception objects created?
What is a singleton c++?
What are the steps in the development cycle?
How do I download c++?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.