Skip to content

Instantly share code, notes, and snippets.

@myun2
Last active February 3, 2021 18:30
Show Gist options
  • Save myun2/c4d6ddb7d909e57abc2cce18f9b71c1d to your computer and use it in GitHub Desktop.
Save myun2/c4d6ddb7d909e57abc2cce18f9b71c1d to your computer and use it in GitHub Desktop.

hello.c

#include <stdio.h>

int main() {
  printf("Hello world!\n");
  return 0;
}
$ gcc hello.c
$ ./a.out
Hello world!

犬にも分かるC++プログラミング

  1. Hello world!
  2. stdio.h
  3. File IO
  4. ポインタ
  5. make
  6. 構造体

C++

  1. クラス
  2. Boost
  3. template
  4. string
  5. vector/map
  6. iterator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment