91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • 編程語言 > 
  • 0901假設存在一個可以從標準輸入讀入字母并且將其從小寫轉換為大寫輸出的可執行程序upcase

0901假設存在一個可以從標準輸入讀入字母并且將其從小寫轉換為大寫輸出的可執行程序upcase

發布時間:2020-07-02 07:40:13 來源:網絡 閱讀:434 作者:銀河星君 欄目:編程語言

/*

  • 假設存在一個可以從標準輸入讀入字母并且將其從小寫轉換為大寫輸出的可執行程序upcase,
  • 使用pipe函數編寫一個應用程序,實現將一個指定文本文件中的字母都轉換為大寫。
    */

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

#define BUFSIZE PIPE_BUF

int main(int argc, char argv[])
{
int n,fd[2];
pid_t pid;
char buffer[BUFSIZE+1];
FILE
fp;
if(argc<=1)
{
printf("usage:%s <pathname>\n",argv[0]);
exit(1);
}
//open txt file
if((fp=fopen(argv[1],"r"))==NULL)
{
printf("Can't open %s\n",argv[1]);
exit(1);
}
//create pipe
if(pipe(fd)<0)
{
printf("pipe failed!\n");
exit(1);
}
//create son process
if((pid=fork())<0)
{
printf("fork failed!\n");
exit(1);
}
else if(pid>0)// father process
{
close(fd[0]);
while(fgets(buffer,BUFSIZE,fp)!=NULL)
{
n=strlen(buffer);
//write data to pipe
if(write(fd[1],buffer,n)!=n)
{
printf("write error to pipe.\n");
exit(1);
}
}
if(ferror(fp))
{
printf("fgets error.\n");
exit(1);
}
close(fd[1]);
if(waitpid(pid,NULL,0)<0)
{
printf("waitpid error!\n");
exit(1);
}
exit(0);
}
else
{
close(fd[1]);
if(fd[0]!=STDIN_FILENO)
{
//copy pipe to stdin
if(dup2(fd[0],STDIN_FILENO)!=STDIN_FILENO)
{
printf("dup2 error to stdin!\n");
exit(1);
}
close(fd[0]);
}
//run user program
if(execl("upcase","upcase",(char *)0)<0)
{
printf("execl error for upcase.\n");
exit(1);
}
exit(0);
}
//return 0;
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昆明市| 栾川县| 娱乐| 枣阳市| 项城市| 方城县| 乐东| 闽侯县| 旬阳县| 新乡市| 新宁县| 甘洛县| 前郭尔| 霍邱县| 清流县| 德清县| 枞阳县| 保亭| 大埔区| 北碚区| 东兴市| 肥东县| 桐柏县| 义乌市| 香格里拉县| 璧山县| 民县| 山丹县| 景德镇市| 普定县| 新昌县| 胶州市| 思茅市| 南投县| 泽普县| 南通市| 浦北县| 红安县| 开封市| 南城县| 陆川县|