of course
You know some birds are not meant to be caged, their feathers are just too bright.
of course
You know some birds are not meant to be caged, their feathers are just too bright.
match the prameter (LPCTSTR lpBinaryPathName) of API CreateService()
You know some birds are not meant to be caged, their feathers are just too bright.
#include <string>//not <string.h>
using namespace std;
string str1,str2;
str1 = "this is my first string.";
str2 = "this is my second string."
cout<<str1<<endl;
cout<<str2<<endl;
String is a class in boost c++ library,and it has many member functions to deal with string,you can do a search about it,or find a book contains chapter string.
You know some birds are not meant to be caged, their feathers are just too bright.
thanks a lot ,a good article.
You know some birds are not meant to be caged, their feathers are just too bright.
i find your problem is not to programe,is to use the computer.
You know some birds are not meant to be caged, their feathers are just too bright.
search "AfxbeginThread" in MSDN
You know some birds are not meant to be caged, their feathers are just too bright.
haha~ The error number is exactly the same as that we have expected. Click Tools >> error Lookup,enter the error number, then you may have the answer.
You know some birds are not meant to be caged, their feathers are just too bright.
toprogramminguy wrote:
for example if you want to display the strings showing what their values are.
toprogramminguy wrote:
<< "\n";
You have made it here.
toprogramminguy wrote:
int a[5];
initialize it just like cin>>a[i]..... Well,if you do really want to convert from "int (like a[x])" to "char [](like ppl[x])",what you have related before.(like "str[0]" = a1,"str[1] = a2............").(The compiler does not allow you to do like this ,but you do.) You can try this:
sprintf(str[i],"%d",a[i]);//#include "stdio.h"
//sprintf(str[i],"%c",a[i]);
You know some birds are not meant to be caged, their feathers are just too bright.
modified on Monday, September 8, 2008 10:25 PM
use the pointer:
int a[10];
for(x=0;x<10;x++)
{
You know some birds are not meant to be caged, their feathers are just too bright.
HI,everyone. I have used the stream I/0 to write myOwn.exe file in the source.exe file.When the combined file is executed,it can read myOwn.exe out and create two processes to execute them(This procedure is achieved in myOwn.exe).But I think this method is a little stupid. Do you have any other great idea to combine them to a single,in which the two .exe files can be executed by turns?
modified on Wednesday, September 17, 2008 9:57 PM