뭐라도 쓰겠지
25.02.28 / Hello World! 본문
C
#include <stdio.h>
int main(void){
printf("Hello World!");
return 0;
}
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hello_World
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}'프로그래밍 > C' 카테고리의 다른 글
| 25.03.07-25.03.11 / 중첩 반복문을 사용한 피라미드 (0) | 2025.03.07 |
|---|---|
| 25.03.06 / 비트 플래그를 이용한 퀘스트 클리어 여부 확인 (0) | 2025.03.06 |
| 25.03.06 / 비트 연산자를 이용한 2진법 출력 (0) | 2025.03.06 |
| 25.03.04 / 재귀함수를 이용한 2진법 변환기 (0) | 2025.03.04 |
| 25.03.04 / Hello World 뜯어보기 (0) | 2025.03.04 |