fork download
  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. int main()
  7. {
  8. char str[256];
  9.  
  10. printf("文字列を入力してください。\n");
  11. fgets(str, sizeof str / sizeof str[0], stdin);
  12. if (strlen(str) < 2) {
  13. return 1;
  14. }
  15. printf("最初の二文字を除いた文字列は・・・\n%sです。", str + 2);
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 1680KB
stdin
incomplete
stdout
文字列を入力してください。
最初の二文字を除いた文字列は・・・
complete
です。