1、老师要求我们做一个简单的c 语言编程,要我们提交那个源程序,是不是只提交那个有C++标志的图标就好啊
交后缀名为.cpp的文件就行了

2、如何实现线程互等,线程2等待线程1结束后才继续执行。(可设置标志位) 求源代码
pthread_exit(NULL);
}
int main()
{
//初始化一个互斥锁
pthread_mutex_init(&mut,NULL);
//创建A同学线程
pthread_create(&thread[0], NULL,studentA,NULL);
//创建B同学线程
pthread_create(&thread[1], NULL,studentB,NULL);
//等待A同学线程结束
pthread_join(thread[0],NULL);
//等待B同学线程结束
pthread_join(thread[1],NULL);
}
3、MATLAB编写交通标志检测与识别的源程序
用matlab的,出自寡人之手,参看原帖 没法发链接
百度搜索 标题
交通标志识别系统 标准完全模板 HSV定位基础版
4、java源程序中带有包,类名是hello,编译命令是javac -c .hello.java,为什么系统说“-c”为无效的标志,源文件
去掉 -C
5、使用dw如何改变网页的标志,源代码是什么 ?
网页的标志?你是说显示在网站前面的小图标logo吗?
如果是的话就做一个favicon.ico图标,然后放到网站根目录下,也就是你访问的首页的目录下。浏览器会自动访问到的并显示出来。
6、请问你有交通标志检测与识别的MATLAB源程序么
我有一条获取server安装的各种组件的powershell命令,可以在server上正常命令行执行
powershell -command "& {get-windowsfeature | Out-File -FilePath C:\Command.txt}"
但我用C语言写出来的exe去跑的时候总是不能正常执行,因为server环境里面没有debug环境,所以也不知道具体错在什么地方了,具体source如下:
C/C++ code?
TCHAR szCommandLine[1024] = {0};
sprintf(szCommandLine,
"powershell -command \"& {get-windowsfeature | Out-File -FilePath C:\\Command.txt}\"");
bSuccess = CreateProcess( NULL, // No mole name (use command line).
szCommandLine, // Command line.
NULL, // Process handle not inheritable.
NULL, // Thread handle not inheritable.
FALSE, // Set handle inheritance to FALSE.
0, // No creation flags.
NULL, // Use parent's environment block.
NULL, // Use parent's starting directory.
&si, // Pointer to STARTUPINFO structure.
&pi ); // Pointer to PROCESS_INFORMATION structure.