PHP

11/19/2023

C, C++, JAVA, C# [003] Comments

 C


// This is a comment

printf("Hello World!");


printf("Hello World!"); // This is a comment


/* The code below will print the words Hello World!

to the screen, and it is amazing */

printf("Hello World!");


C++


// This is a comment

cout << "Hello World!";


cout << "Hello World!"; // This is a comment


/* The code below will print the words Hello World!

to the screen, and it is amazing */

cout << "Hello World!";


JAVA

// This is a comment

System.out.println("Hello World");


System.out.println("Hello World"); // This is a comment


C#

// This is a comment

Console.WriteLine("Hello World!");


Console.WriteLine("Hello World!");  // This is a comment




No comments:

Post a Comment

Featured Post

이성(합리적 판단)과 감성(감정적 판단)을 나타내는 형용사

이성(합리적 판단)과 감성(감정적 판단)을 나타내는 형용사는 영어 문장에서 의견, 판단, 주장 등을 표현할 때 자주 사용됩니다. 특히 `that + 주어 + (should)` 구조와 함께 쓰여서 의무나 필요성, 기대를 나타낼 수 있습니다. ### 1....

Popular Posts