Skip to content

Instantly share code, notes, and snippets.

View Kkan9ma's full-sized avatar

kkan9ma Kkan9ma

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<h2>연습문제 1-1</h2>
<script>
@Kkan9ma
Kkan9ma / hello.c
Created June 22, 2019 13:23
c hello world
#include <stdio.h>
int main void()
{
printf("Hello World!\n")
return 0;
}