㈠ c语言中如何让两个程序同时运行
多个工程就可以了嘛,你运行的时候选择不同的工程就可以分别编译,分别点击运行就可以了嘛,注意要选择相应工程哈!!
㈡ c语言如何一起编辑两个程序
可以另外定义两个函数,在到主函数里面调用这两函数就可以了。也可以分几个,一个程序一个文件,文件名自己写成
.h
,然后在主函数的那一个文件中调用另两个函数所在的头文件就行。例如:include<stdio.h>
其中stdio.h就是调用了。
㈢ 我现在有好几个C语言程序,怎么将他们并在一起是不是就像主程序调用子程序那样
差不多是吧,把其他程序的main改名(只能有一个main),然后include其他程序
㈣ C语言怎么实现同时运行两个子程序
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace _2
{
public partial class Form1 : Form
{
public Form1()
{
Control. = false;//忽略错误线程
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Thread t1 = new Thread(new ThreadStart(run1));
t1.Start();
Thread t2 = new Thread(new ThreadStart(run2));
t2.Start();
}
public void run1()
{
while (1 == 1)
{
int i1 = label1.Location.X;
Random rd = new Random();
int i = rd.Next(19);
i1 = i1 + i;
Point p = new Point(i1, label1.Location.Y);
Thread.Sleep(22);
if (label1.Left >= this.Size.Width - label1.Size.Width)
{
Thread.CurrentThread.Abort();
}
}
//while (1 == 1)
//{
// Random rd = new Random();
// int i = rd.Next(19);
// label1.Left += i;
// Thread.Sleep(22);
// if (label1.Left >= this.Size.Width - label1.Size.Width)
// {
// Thread.CurrentThread.Abort();
// }
//}
}
public void run2()
{
int i1 = label1.Location.X;
int i2 = label2.Location.X;
//while (1 == 1)
//{
// Random rd = new Random();
// int i = rd.Next(19);
// label2.Left += i;
// Thread.Sleep(22);
// if (label2.Left >= (this.Size.Width - label2.Size.Width))
// {
// Thread.CurrentThread.Abort();
// }
//}
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Application.Exit();
}
}
}
㈤ c语言如何同时运行两个程序
C语言编译是线性的,同时只能编译一个程序 无法做到两个程序一起编译,只能先编译一个 再编译另一个。如果是命令咐歼纳行 可以开两个终端 同时编译,不过 这并不能提高编译速度,改衡意义不大。语言必须有个先后顺序,就算是面象对象的语言,线程也是一个一个再进行,不会有同时的情况,如果是双核CPU双线程还有可衡没能进行。