LoginSignup
0

More than 3 years have passed since last update.

printf入門

Last updated at Posted at 2016-12-21

この記事は Oculus Rift Advent Calendar 2016 22日目の投稿でした。

C言語で文字を出してみよう!!

ソースコードの例

goodbye.c
#include<stdio.h>

int main()
{
    printf("退職しました");

    // 退職の例
    exit(-1);
}

P.S. 私事ですが退職しました。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0