• This project
    • Loading...
  • Sign in

임에딘 / experiment4

%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
  • experiment4
  • echo.c
  • 임에딘's avatar
    push the echo program · 2d6032f0
    2d6032f0
    임에딘 authored 2018-09-28 22:47:00 +0900
echo.c 137 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
#include <stdio.h>
int main() {
	char Name[20];
	printf("당신의 이름을 입력하세요: ");
	gets(Name);
	puts(Name);

	return 0;
}