What is namespace?
Answers were Sorted based on User's Feedback
Answer / kumarvikash1985
namespace is a collectoin of classes ...and without
declaring the namespace we can't use the fionctionality of
programming language.
| Is This Answer Correct ? | 8 Yes | 13 No |
Answer / nagalakshmi
namespace s used stored the variables like that.
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / naveen kumar
it is used to solve the problem when there is conflict
between class names
| Is This Answer Correct ? | 12 Yes | 20 No |
Answer / ritesh kumar rawat
Namespace is logical group of classes.It can span multiple
assembly.
| Is This Answer Correct ? | 7 Yes | 17 No |
Answer / kumarasamy
namespace is a one of the problems solved by namespaces,
that of conflicting class names
| Is This Answer Correct ? | 7 Yes | 32 No |
What type of loop is a for loop?
What is use of overloading?
create a c++ program that will accepts 9 inputs using 3 by 3 array.
What is nutshell in programming language?
1 Answers Satyam, Tech Mahindra,
What is advantage of inheritance?
wht is major diff b/w c and c++?
should we use linear search or binary search if elements are placed in random order or mixed?in both cases? i need a little bit detail ans?thnks
Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....
4 Answers Bally Technologies, IBM, SoftSol,
Why is oop useful?
what is a class
in the following, A D B G E C F Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is: a)Represented by a different letter in abov fig: b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are equal. wch does g represents? C
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output