• This project
    • Loading...
  • Sign in

강민구 / kang_2020_gitbranch

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • kang_2020_gitbranch
  • echo.cpp
  • 강민구's avatar
    branch exit · 4dc64c3a
    4dc64c3a Browse Files
    강민구 authored 2020-09-25 23:08:52 +0900
echo.cpp 220 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main()
{
    char c1;
    printf("종료하려면 q를 누르시오\n");
    do
    {
        scanf("%c", &c1);
    } while (c1 != 'q');
    printf("종료\n");
    return 0;
}