User profile: hoity

User info
User name:hoity
History
Joined:
Number of posts:8
Latest posts:

Multidimensional Vector
I want to clear a Multidimensional vector but "clear()" function isn't working.Can anybody help me?

How to take multiple line string in c++?
[code]std::string Para = " "; while(std::istream::getline(std::cin, Para)) { //Do something her...

String Problem error
How about this. [code] #include <iostream> #include <string> #include <fstream> using namespace ...

Good books after clearing the fundamental of c++
The book of Mr. Balagurusamy is mainly theory based. You need to do a lot more coding to be efficien...

Prime numbers using loop
Try this. [code] #include <cstdio> #include <iostream> bool isPrime( int i ) { for( int j = 2; j < i...