C语言
iteye_13444
这个作者很懒,什么都没留下…
展开
-
C语言读文件
/* * File: newmain.c * Author: Administrator * * Created on 2009年3月1日, 下午7:39 */ #include <stdio.h>#include <stdlib.h> /* * */ main() { char c='A',c2[4]="123"; printf("%c",c); ...2009-03-01 20:12:12 · 129 阅读 · 0 评论 -
待定文章
/* * File: one.cpp * Author: Administrator * * Created on 2009年3月5日, 下午6:08 */ #include #include BOOL MySystemShutdown( LPTSTR lpMsg ) { HANDLE hToken; // handle to process to...2009-03-06 20:27:29 · 103 阅读 · 0 评论 -
C语言 发送电子邮件
我用C 语言实现了连接126邮件服务器发送邮件,网上有很多例子,我下了,没有一个能运行起来的,这个是用netbean测试,没有问题了,下面是我的代码(要改三处地方:用户名\密码\发送邮件): #include #include #include #include //#pragma comment(lib,"ws2_32.lib") // Function protot...2009-04-22 08:46:59 · 884 阅读 · 0 评论 -
C语言第一个自己的DLL
7783 #ifdef __cplusplus extern "C" { #endif __declspec(dllexport) int add(int a,int b){ return a+b; } #ifdef __cplusplus } #endif 229682009-09-03 17:47:39 · 104 阅读 · 0 评论 -
C语言 判断是否打开QQ登陆窗口
#include #include #include BOOL CALLBACK lpEnumFunc(HWND hwnd, LPARAM lParam) { char str[100]; char *qqlogin="QQLoginMessageWnd"; ::GetWindowText(hwnd,str,sizeof(str)); int s=::GetClassN...2009-09-17 15:31:02 · 440 阅读 · 0 评论 -
让电脑讲你输入的英文.
I find a interesting thing: let your computer speaks out the words which you inputted just now. The method is below: 1: Create a new text file. 2: Write a sentence: CreateObject("SAPI.SpVoice").Spea...原创 2010-07-20 09:15:09 · 155 阅读 · 0 评论