What is the limitation of cin while taking input for character array?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between public, private, and protected access?
How is new() different from malloc()?
What is the difference between static global and global ?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
What do you mean by volatile and mutable keywords used in c++?
What is difference between malloc()/free() and new/delete?
Can we inherit constructor in c++?
How can you force instantiation of a template?
write a C++ programming using for loop: * * * * * * * * * *
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;
What is math h in c++?
Can we define function inside main in c++?