• This project
    • Loading...
  • Sign in

손지언 / 2019102185

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • OSSPractice
  • lab5-2
  • hooking_prac
  • dhello_world
  • hello_world.c
  • 손지언's avatar
    lab5-2 실습 추가 · f22eef8c
    f22eef8c
    손지언 authored 2022-02-09 06:38:20 +0000
hello_world.c 127 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
#include <stdio.h>

int main(int argc, char *argv[]){
	char sHelloMsg[] = {"Hello world!\n"};
	printf(sHelloMsg);
	return 0;
}