windows编程如win32 应用能使用C++的函数么,,怎么用阿
我是问C++的库函数在windows中怎么用比如C++中的stringitoa这些好用的字符串操作函数在windows编程中都没用了么WINDOWS编程撒...
我是问C++的库函数在windows中怎么用
比如C++中的string itoa 这些好用的字符串操作函数在windows编程中都没用了么
WINDOWS编程撒 展开
比如C++中的string itoa 这些好用的字符串操作函数在windows编程中都没用了么
WINDOWS编程撒 展开
3个回答
展开全部
可以用啊
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string a("hello");
int n=123;
char str[10];
cout<<"string a= "<<a<<endl;
itoa(n,str,10);
cout<<str<<endl;
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string a("hello");
int n=123;
char str[10];
cout<<"string a= "<<a<<endl;
itoa(n,str,10);
cout<<str<<endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string a("hello");
int n=123;
char str[10];
cout<<"string a= "<<a<<endl;
itoa(n,str,10);
cout<<str<<endl;
return 0;
}
去饭客网络看看吧
#include <string>
using namespace std;
int main(void)
{
string a("hello");
int n=123;
char str[10];
cout<<"string a= "<<a<<endl;
itoa(n,str,10);
cout<<str<<endl;
return 0;
}
去饭客网络看看吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用VC++创建的时候,直接建立工程win32 application
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询