What does std mean in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Explain the scope of resolution operator.
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
What is the use of 'this' pointer?
What language is a dll written in?
What is pure virtual function?
tell me about yourself ?i want answer for frehers with various exasmples?
What are the two types of polymorphism?
Does improper inheritance have a potential to wreck a project?
Write a program to find the Factorial of a number
What is difference between rand () and srand ()?