在C語言中,可以使用多線程來讓兩個函數并行執行。可以使用pthread庫來創建線程并讓兩個函數在不同的線程中執行。
以下是一個示例代碼,其中使用pthread庫創建兩個線程并讓兩個函數并行執行:
#include <stdio.h>
#include <pthread.h>
void* func1(void* arg) {
for (int i = 0; i < 10; i++) {
printf("Function 1: %d\n", i);
}
return NULL;
}
void* func2(void* arg) {
for (int i = 0; i < 10; i++) {
printf("Function 2: %d\n", i);
}
return NULL;
}
int main() {
pthread_t thread1, thread2;
pthread_create(&thread1, NULL, func1, NULL);
pthread_create(&thread2, NULL, func2, NULL);
pthread_join(thread1, NULL);
pthread_join(thread2, NULL);
return 0;
}
在上面的代碼中,我們定義了兩個函數func1和func2,并在main函數中使用pthread_create函數創建兩個線程來執行這兩個函數。最后使用pthread_join函數等待兩個線程執行完畢并回收資源。
通過使用多線程,我們可以讓兩個函數并行執行,從而提高程序的性能和效率。