C语言与管道

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言与管道相关的知识,希望对你有一定的参考价值。

int main()
{
    int s;
    int n;
    float avg;
    
    scanf("%d,%d",&s,&n);   //特别注意的地方

   // scanf("%d",&n);
 
    avg=s/n;
    printf("avg is %f \n",avg);

    return 0;
}

 

 

#include <stdio.h>

int main()
{
    int i;
    int n=0;
    int s=0;
    while(1)
    {
        scanf("%d",&i);
        if(i==0)
        {
           break; 
        }
        n++;
        s+=i;
    }
    printf("%d,%d\n",s,n);
    return 0;
}

 

./input.out | ./avg.out

 

以上是关于C语言与管道的主要内容,如果未能解决你的问题,请参考以下文章

C语言代码片段

C#与C互传数据

C语言与网络问题 高手进

go语言管道(channel)

go语言管道(channel)

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段