In ra dòng chữ Hello world!


Submit solution


Points: 1 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Allowed languages
C, C++, Java, Python

Viết chương trình hiển thị nội dung "HELLO WORLD!".

Hướng dẫn:

Dùng hàm printf để hiển thị:

//Khai báo thư viện
#include <stdio.h>

int main(){

    //Dòng lệnh in chữ "HELLO WORLD!"
    printf("HELLO WORLD!");

    return 0;
}

Comments