㈠ 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雙線程還有可衡沒能進行。