String Sample application
#include "iostream"
#include "conio.h"
#include "string"
using namespace std;
void StringTest()
{
string str = "Hello World";
cout<
}
int main(int argc, char* argv[])
{
StringTest();
getch();
return 0;
}
#include "conio.h"
#include "string"
using namespace std;
void StringTest()
{
string str = "Hello World";
cout<
}
int main(int argc, char* argv[])
{
StringTest();
getch();
return 0;
}
Labels: Cpp
0 Comments:
Post a Comment
<< Home