What is a storage class in C++
Answer / nashiinformaticssolutions
Certain characteristics of variables or functions are defined by storage classes. These characteristics include lifetime, or how long a variable is active, and visibility, or how easily a variable may be accessed from various parts of the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is command line arguments in C++? What are its uses? Where we have to use this?
What is exception handling in C++?
What is an iterator?
structure contains int, char, float how it behaves for big endian and little endian?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Describe private, protected and public – the differences and give examples.
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What's the "software peter principle”?
Define whitespace in C++.
What are associate containers?
What is difference between c++ and c ++ 14?