What is istream c++?
No Answer is Posted For this Question
Be the First to Post Answer
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
Is it possible for a member function to delete the pointer, named this?
What happens when you make call 'delete this;'?
What can c++ be used for?
What are the uses of static class data?
What is the first name of c++?
If a function doesn’t return a value, how do you declare the function?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
How can you quickly find the number of elements stored in a static array?
Differentiate between the message and method in c++?
What is null and void pointer?