Write about the access privileges in c++ and also mention about its default access level?
No Answer is Posted For this Question
Be the First to Post Answer
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
When do we run a shell in the unix system? How will you tell which shell you are running?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Explain what is oop?
Will the inline function be compiled as the inline function always? Justify.
show that among any group of five (not necessary consecutive ) integers, there are two with the same remainder when divided by 4.
Write a c program for binary addition of two 8 bit numbers.
What is auto type c++?
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
How can you find the nodes with repetetive data in a linked list?
Which bit wise operator is suitable for putting on a particular bit in a number?
What is the array and initializing arrays in c++?