
c/c++
mypcstyle
这个作者很懒,什么都没留下…
展开
-
Eclipse+cdt+cygwin配置C/C++开发环境
Cygwin 是一个用于 Windows 的类 UNIX shell 环境。通过cygwin可以在windows下开发编译linux下运行的c/c++程序。 1.在eclipse官网下载安装eclipse,我用的的eclipse v4.3.1。 2.安装cdt插件,打开eclipse,打开help->install new software,搜索”cdt”,找到相应的cdt插件并安装。原创 2014-07-07 15:06:38 · 6543 阅读 · 0 评论 -
C语言cgi程序在apache上的实现
本文介绍使用apache实现C语言写的cgi程序。 必要条件,安装apache。 首先建立C程序,这里就不多介绍。参照前面的文章或者其它的参考书籍。 建立文件hello.c,内容如下: #include int main() { printf(“Content-type:text/html\n\n”); printf(“”); printf(“welcome to c cgi.原创 2014-07-07 10:50:59 · 1963 阅读 · 1 评论 -
C语言实现字符转unix时间戳
在PHP中把字符串转成Unix时间戳是多么的方便,一个strtotime()函数就搞定了。C语言实现就麻烦很多了,需要先转成tm类型,再得到它的Unix时间戳。附上实现代码: #include #include int strtotime(char datetime[]) { struct tm tm_time; int unixtime; strptime(datetime原创 2014-07-07 14:30:27 · 7453 阅读 · 0 评论