c_cpp 你好,C世界

Posted

tags:

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

#include <stdio.h>

int main()
{
    printf("hello, world\n");
}

// Compile, then run `./a.out 1>stdout.txt 2>stderr.txt`
// Then run `echo $?`
// stdout.txt should contain "hello, world"
// stderr.txt should be empty
// Your `echo $?` command should return 0
#include <stdio.h>

int main()
{
    printf("hello, world\n");
    return 1;
}

// Compile, then run `./a.out 1>stdout.txt 2>stderr.txt`
// Then run `echo $?`
// stdout.txt should contain "hello, world"
// stderr.txt should be empty
// Your `echo $?` command should return 1
#include <stdio.h>

int main()
{
    fprintf(stdout, "hello, world\n");
    fprintf(stderr, "this is an error\n");
    return 1;
}

// Compile, then run `./a.out 1>stdout.txt 2>stderr.txt`
// Then run `echo $?`
// stdout.txt should contain "hello, world"
// stderr.txt should contain "this is an error"
// Your `echo $?` command should return 1

以上是关于c_cpp 你好,C世界的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 你好,世界

c_cpp 你好世界的程序。

c_cpp 你好,世界!遗传算法

c_cpp C你好

c_cpp 你好ç

c_cpp 你好